1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-09 17:03:00 +03:00

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

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;
};