> Tatsuo Ishii wrote:
Bruce Momjian <bruce@momjian.us>
> Tatsuo Ishii wrote: > > > > It was made to cope with encoding such as an Asian bloc in 7.2Beta2. > > > > > > > > Added ServerEncoding > > > > Korean (JOHAB), Thai (WIN874), > > > > Vietnamese (TCVN), Arabic (WIN1256) > > > > > > > > Added ClientEncoding > > > > Simplified Chinese (GBK), Korean (UHC) > > > > > > > > > > > > > http://www.sankyo-unyu.co.jp/Pool/postgresql-7.2b2.newencoding.diff.tar.gz > > > > (608K) > > > > > > Looks good. I need some people to review this for me. > > > > For me they look good too. The only missing part is a > > documentation. I will ask him to write it up. If he couldn't, I will > > do it for him. > > > The diff is 3mb > > > but appears to address only additions to multibyte. I have attached a > > > list of files it modifies. Also, look at the sizes of the mb/ > > > directory. It is getting large: > > > > > > 4 ./CVS > > > 6 ./Unicode/CVS > > > 3433 ./Unicode > > > 6197 . > > > > Yes. We definitely need the on-the-fly encoding addition capability: > > i.e. CREATE CHRACTER SET in the future... > > -- > > Tatsuo Ishii > > > > Address chainge. http://www.sankyo-unyu.co.jp/Pool/postgresql-7.2.newencoding.diff.gz Add PsqlODBC and document ...etc patch. Eiji Tokuya
Files
| Path | Change | +/− |
|---|---|---|
| configure | modified | +3 −2 |
| configure.in | modified | +3 −3 |
| doc/README.mb.jp | modified | +47 −9 |
| doc/src/sgml/charset.sgml | modified | +57 −4 |
| src/backend/utils/mb/conv.c | modified | +181 −2 |
| src/backend/utils/mb/encnames.c | modified | +86 −2 |
| src/backend/utils/mb/Unicode/euc_jp_to_utf8.map | modified | +199 −9 |
| src/backend/utils/mb/Unicode/euc_kr_to_utf8.map | modified | +2360 −2360 |
| src/backend/utils/mb/Unicode/UCS_to_EUC_KR.pl | modified | +2 −2 |
| src/backend/utils/mb/Unicode/utf8_to_euc_jp.map | modified | +176 −8 |
| src/backend/utils/mb/Unicode/utf8_to_euc_kr.map | modified | +2360 −2360 |
| src/backend/utils/mb/Unicode/utf8_to_sjis.map | modified | +10 −1 |
| src/backend/utils/mb/wchar.c | modified | +82 −23 |
| src/include/mb/pg_wchar.h | modified | +10 −4 |
| src/interfaces/odbc/connection.c | modified | +24 −3 |
| src/interfaces/odbc/multibyte.c | modified | +285 −93 |
| src/interfaces/odbc/multibyte.h | modified | +74 −26 |