diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 1999-07-11 22:47:21 +0000 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 1999-07-11 22:47:21 +0000 |
commit | 8f02f2252dfd6724058a60ac9fd619030dc2ec70 (patch) | |
tree | c45b0df7606acd45d4a15c16b66246187dabc5dc /src/backend/utils/mb/wchar.c | |
parent | 2859bde10913145924f8f16c6de3149e05187a1a (diff) |
Fix some compiler warnings (Tomoaki Nishiyama), add WIN1250 support (Pavel Behal)
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 */ |