File tree 1 file changed +2
-3
lines changed 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 1
- /* $PostgreSQL: pgsql/src/include/mb/pg_wchar.h,v 1.60 2005/08/05 14:36:43 tgl Exp $ */
1
+ /* $PostgreSQL: pgsql/src/include/mb/pg_wchar.h,v 1.61 2005/08/05 15:01:48 tgl Exp $ */
2
2
3
3
#ifndef PG_WCHAR_H
4
4
#define PG_WCHAR_H
@@ -191,7 +191,6 @@ typedef enum pg_enc
191
191
} pg_enc ;
192
192
193
193
#define PG_ENCODING_BE_LAST PG_WIN1250
194
- #define PG_ENCODING_FE_LAST PG_GB18030
195
194
196
195
/*
197
196
* 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
201
203
202
#define PG_ENCODING_IS_CLIENT_ONLY (_enc ) \
204
- ((( _enc) > PG_ENCODING_BE_LAST && (_enc) <= PG_ENCODING_FE_LAST )
203
+ ((_enc) > PG_ENCODING_BE_LAST && (_enc) < _PG_LAST_ENCODING_ )
205
204
206
205
#define PG_VALID_ENCODING (_enc ) \
207
206
((_enc) >= 0 && (_enc) < _PG_LAST_ENCODING_)
You can’t perform that action at this time.
0 commit comments