Commit ec7129b7 authored by Peter Eisentraut's avatar Peter Eisentraut

Fix collprovider of predefined collations

An earlier version of the patch had collprovider as an integer and thus
set these to 0, but the correct setting is now null.
parent 4955109d
...@@ -53,6 +53,6 @@ ...@@ -53,6 +53,6 @@
*/ */
/* yyyymmddN */ /* yyyymmddN */
#define CATALOG_VERSION_NO 201706081 #define CATALOG_VERSION_NO 201706131
#endif #endif
...@@ -70,13 +70,13 @@ typedef FormData_pg_collation *Form_pg_collation; ...@@ -70,13 +70,13 @@ typedef FormData_pg_collation *Form_pg_collation;
* ---------------- * ----------------
*/ */
DATA(insert OID = 100 ( default PGNSP PGUID d -1 "" "" 0 )); DATA(insert OID = 100 ( default PGNSP PGUID d -1 "" "" _null_ ));
DESCR("database's default collation"); DESCR("database's default collation");
#define DEFAULT_COLLATION_OID 100 #define DEFAULT_COLLATION_OID 100
DATA(insert OID = 950 ( C PGNSP PGUID c -1 "C" "C" 0 )); DATA(insert OID = 950 ( C PGNSP PGUID c -1 "C" "C" _null_ ));
DESCR("standard C collation"); DESCR("standard C collation");
#define C_COLLATION_OID 950 #define C_COLLATION_OID 950
DATA(insert OID = 951 ( POSIX PGNSP PGUID c -1 "POSIX" "POSIX" 0 )); DATA(insert OID = 951 ( POSIX PGNSP PGUID c -1 "POSIX" "POSIX" _null_ ));
DESCR("standard POSIX collation"); DESCR("standard POSIX collation");
#define POSIX_COLLATION_OID 951 #define POSIX_COLLATION_OID 951
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment