diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2017-03-23 23:18:52 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2017-03-23 23:18:52 -0400 |
commit | 457a4448732881b5008f7a3bcca76fc299075ac3 (patch) | |
tree | 010ecda875742582b83a3e73eff8a6b5985d280b | |
parent | 218747d2cf3cc1536ff77435e596280e0e739760 (diff) | |
download | postgresql-457a4448732881b5008f7a3bcca76fc299075ac3.tar.gz postgresql-457a4448732881b5008f7a3bcca76fc299075ac3.zip |
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.
-rw-r--r-- | src/include/utils/pg_locale.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/utils/pg_locale.h b/src/include/utils/pg_locale.h index 12d75474138..85eb9d71fdc 100644 --- a/src/include/utils/pg_locale.h +++ b/src/include/utils/pg_locale.h @@ -80,6 +80,7 @@ struct pg_locale_t UCollator *ucol; } icu; #endif + int dummy; /* in case we have neither LOCALE_T nor ICU */ } info; }; |