We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b66ddc commit 13501cdCopy full SHA for 13501cd
src/bin/pg_upgrade/version.c
@@ -11,6 +11,10 @@
11
12
#include "pg_upgrade.h"
13
14
+#if defined(WIN32) && defined(USE_ICU)
15
+#include <unicode/uloc.h>
16
+#endif
17
+
18
#include "catalog/pg_class.h"
19
#include "catalog/pg_collation.h"
20
#include "fe_utils/string_utils.h"
src/port/chklocale.c
@@ -23,14 +23,14 @@
23
#include <langinfo.h>
24
#endif
25
26
-#include "catalog/pg_collation.h"
27
-#include "common/pg_collation_fn_common.h"
28
-#include "mb/pg_wchar.h"
29
-
30
#ifdef USE_ICU
31
#include <unicode/ucol.h>
32
33
+#include "catalog/pg_collation.h"
+#include "common/pg_collation_fn_common.h"
+#include "mb/pg_wchar.h"
34
/*
35
* In backend, we will use palloc/pfree. In frontend, use malloc/free.
36
*/
0 commit comments