diff options
| author | Peter Eisentraut | 2004-09-17 21:59:57 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2004-09-17 21:59:57 +0000 |
| commit | 152a101f2bf9a90cc4dc32c6f446b9c899a178b1 (patch) | |
| tree | 43421a6584c0dbd99e2f4be02a86254c3f0ded51 /src/include/mb | |
| parent | 0428840864f1c345b2dcd0e32a2b23abfff3a30e (diff) | |
Allow WIN1250 as server encoding.
Diffstat (limited to 'src/include/mb')
| -rw-r--r-- | src/include/mb/pg_wchar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/mb/pg_wchar.h b/src/include/mb/pg_wchar.h index 38c2f354a21..2b4ba2d9fb0 100644 --- a/src/include/mb/pg_wchar.h +++ b/src/include/mb/pg_wchar.h @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/include/mb/pg_wchar.h,v 1.51 2004/08/29 05:06:56 momjian Exp $ */ +/* $PostgreSQL: pgsql/src/include/mb/pg_wchar.h,v 1.52 2004/09/17 21:59:57 petere Exp $ */ #ifndef PG_WCHAR_H #define PG_WCHAR_H @@ -177,19 +177,19 @@ typedef enum pg_enc PG_ISO_8859_6, /* ISO-8859-6 */ PG_ISO_8859_7, /* ISO-8859-7 */ PG_ISO_8859_8, /* ISO-8859-8 */ + PG_WIN1250, /* windows-1250 */ /* followings are for client encoding only */ PG_SJIS, /* Shift JIS (Winindows-932) */ PG_BIG5, /* Big5 (Windows-950) */ PG_GBK, /* GBK (Windows-936) */ PG_UHC, /* UHC (Windows-949) */ - PG_WIN1250, /* windows-1250 */ PG_GB18030, /* GB18030 */ _PG_LAST_ENCODING_ /* mark only */ } pg_enc; -#define PG_ENCODING_BE_LAST PG_ISO_8859_8 +#define PG_ENCODING_BE_LAST PG_WIN1250 #define PG_ENCODING_FE_LAST PG_GB18030 /* |
