Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit cb36e74

Browse files
committed
In src/include/mb/pg_wchar.h we have:
#define PG_ENCODING_BE_LAST PG_ISO_8859_8 #define PG_ENCODING_FE_LAST PG_WIN1256 but the last client encoding in the enum list is actually PG_GB18030 and it seems that #define PG_ENCODING_IS_CLIEN_ONLY(_enc) \ (((_enc) > PG_ENCODING_BE_LAST && (_enc) <= PG_ENCODING_FE_LAST) can never be true. I think the define should read #define PG_ENCODING_FE_LAST PG_GB18030 On the other hand, perhaps no-one cares, because PG_ENCODING_IS_CLIEN_ONLY is never used. -- Oliver Elphick Oliver.Elphick@lfix.co.uk
1 parent 1c5e716 commit cb36e74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/include/mb/pg_wchar.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $Id: pg_wchar.h,v 1.45 2003/02/19 14:31:26 ishii Exp $ */
1+
/* $Id: pg_wchar.h,v 1.46 2003/06/02 18:59:25 momjian Exp $ */
22

33
#ifndef PG_WCHAR_H
44
#define PG_WCHAR_H
@@ -190,7 +190,7 @@ typedef enum pg_enc
190190
} pg_enc;
191191

192192
#define PG_ENCODING_BE_LAST PG_ISO_8859_8
193-
#define PG_ENCODING_FE_LAST PG_WIN1256
193+
#define PG_ENCODING_FE_LAST PG_GB18030
194194

195195
/*
196196
* Please use these tests before access to pg_encconv_tbl[]

0 commit comments

Comments
 (0)