We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent848c30a commit28d3ee4Copy full SHA for 28d3ee4
src/include/mb/pg_wchar.h
@@ -1,4 +1,4 @@
1
-/* $PostgreSQL: pgsql/src/include/mb/pg_wchar.h,v 1.60 2005/08/0514:36:43 tgl Exp $ */
+/* $PostgreSQL: pgsql/src/include/mb/pg_wchar.h,v 1.61 2005/08/0515:01:48 tgl Exp $ */
2
3
#ifndefPG_WCHAR_H
4
#definePG_WCHAR_H
@@ -191,7 +191,6 @@ typedef enum pg_enc
191
}pg_enc;
192
193
#definePG_ENCODING_BE_LAST PG_WIN1250
194
-#definePG_ENCODING_FE_LAST PG_GB18030
195
196
/*
197
* Please use these tests before access to pg_encconv_tbl[]
@@ -201,7 +200,7 @@ typedef enum pg_enc
201
200
((_enc) >= 0 && (_enc) <= PG_ENCODING_BE_LAST)
202
203
#definePG_ENCODING_IS_CLIENT_ONLY(_enc) \
204
-(((_enc) > PG_ENCODING_BE_LAST && (_enc) <= PG_ENCODING_FE_LAST)
+((_enc) > PG_ENCODING_BE_LAST && (_enc) < _PG_LAST_ENCODING_)
205
206
#definePG_VALID_ENCODING(_enc) \
207
((_enc) >= 0 && (_enc) < _PG_LAST_ENCODING_)