Suppress "warning: variable 'collcollate' set but not used".

Tom Lane <tgl@sss.pgh.pa.us>

Commit: ff94205787244ace8ce63e3d9eb98338c59ac215
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2020-11-15T17:39:49Z
Releases: 14.0
Suppress "warning: variable 'collcollate' set but not used".

Buildfarm members that lack both HAVE_LOCALE_T and USE_ICU have been
complaining about pg_newlocale_from_collation's collcollate variable.
This is evidently fallout from commit 7d1297df0, which removed the
only usage outside those two #ifdef'd code paths.  Mark the variable
pg_attribute_unused(), like its sibling collctype, which has been that
way for a long time.

Files

PathChange+/−
src/backend/utils/adt/pg_locale.c modified +1 −1