Avoid syntax error on platforms that have neither LOCALE_T nor ICU.

Buildfarm member anole sees this union as empty, and doesn't like it.
This commit is contained in:
Tom Lane 2017-03-23 23:18:52 -04:00
parent 218747d2cf
commit 457a444873
1 changed files with 1 additions and 0 deletions

View File

@ -80,6 +80,7 @@ struct pg_locale_t
UCollator *ucol;
} icu;
#endif
int dummy; /* in case we have neither LOCALE_T nor ICU */
} info;
};