diff options
Diffstat (limited to 'src/backend/utils/mb/wchar.c')
-rw-r--r-- | src/backend/utils/mb/wchar.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/backend/utils/mb/wchar.c b/src/backend/utils/mb/wchar.c index 0d557e30f6f..0e95b1914b4 100644 --- a/src/backend/utils/mb/wchar.c +++ b/src/backend/utils/mb/wchar.c @@ -1,7 +1,10 @@ /* * conversion functions between pg_wchar and multi-byte streams. * Tatsuo Ishii - * $Id: wchar.c,v 1.8 1999/05/25 16:12:45 momjian Exp $ + * $Id: wchar.c,v 1.9 1999/07/11 22:47:20 ishii Exp $ + * + * WIN1250 client encoding updated by Pavel Behal + * */ #include "mb/pg_wchar.h" @@ -454,7 +457,8 @@ pg_wchar_tbl pg_wchar_table[] = { {pg_latin12wchar_with_len, pg_latin1_mblen}, /* 30 */ {pg_latin12wchar_with_len, pg_latin1_mblen}, /* 31 */ {0, pg_sjis_mblen}, /* 32 */ - {0, pg_big5_mblen} /* 33 */ + {0, pg_big5_mblen}, /* 33 */ + {pg_latin12wchar_with_len, pg_latin1_mblen} /* 34 */ }; /* returns the byte length of a word for mule internal code */ |