mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
> 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
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/charset.sgml,v 2.21 2002/01/20 22:19:55 petere Exp $ -->
|
||||
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/charset.sgml,v 2.22 2002/03/05 05:52:42 momjian Exp $ -->
|
||||
|
||||
<chapter id="charset">
|
||||
<title>Localization</>
|
||||
@ -370,6 +370,10 @@ perl: warning: Falling back to the standard locale ("C").
|
||||
<entry><literal>EUC_KR</literal></entry>
|
||||
<entry>Korean <acronym>EUC</></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>JOHAB</literal></entry>
|
||||
<entry>Korean <acronym>EUC</> (Hangle base)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>EUC_TW</literal></entry>
|
||||
<entry>Taiwan <acronym>EUC</acronym></entry>
|
||||
@ -450,6 +454,18 @@ perl: warning: Falling back to the standard locale ("C").
|
||||
<entry><literal>ALT</literal></entry>
|
||||
<entry>Windows CP866</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>WIN1256</literal></entry>
|
||||
<entry>Arabic Windows CP1256</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>TCVN</literal></entry>
|
||||
<entry>Vietnamese TCVN-5712(Windows CP1258)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>WIN874</literal></entry>
|
||||
<entry>Thai Windows CP874</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</table>
|
||||
@ -580,6 +596,21 @@ $ <userinput>psql -l</userinput>
|
||||
<literal>UNICODE</literal>, <literal>MULE_INTERNAL</literal>
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>EUC_CN</literal></entry>
|
||||
<entry><literal>EUC_CN</literal>, <literal>UNICODE</literal>, <literal>MULE_INTERNAL</literal>
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>EUC_KR</literal></entry>
|
||||
<entry><literal>EUC_KR</literal>, <literal>UNICODE</literal>, <literal>MULE_INTERNAL</literal>
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>JOHAB</literal></entry>
|
||||
<entry><literal>JOHAB</literal>, <literal>UNICODE</literal>
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>EUC_TW</literal></entry>
|
||||
<entry><literal>EUC_TW</literal>, <literal>BIG5</literal>,
|
||||
@ -682,15 +713,19 @@ $ <userinput>psql -l</userinput>
|
||||
<entry><literal>UNICODE</literal></entry>
|
||||
<entry>
|
||||
<literal>EUC_JP</literal>, <literal>SJIS</literal>,
|
||||
<literal>EUC_KR</literal>, <literal>EUC_CN</literal>,
|
||||
<literal>EUC_KR</literal>, <literal>UHC</literal>, <literal>JOHAB</literal>,
|
||||
<literal>EUC_CN</literal>, <literal>GBK</literal>,
|
||||
<literal>EUC_TW</literal>, <literal>BIG5</literal>,
|
||||
<literal>LATIN1</literal> to <literal>LATIN10</literal>,
|
||||
<literal>ISO_8859_5</literal>,
|
||||
<literal>ISO_8859_6</literal>,
|
||||
<literal>ISO_8859_7</literal>,
|
||||
<literal>ISO_8859_8</literal>,
|
||||
<literal>WIN</literal>, <literal>ALT</literal>,
|
||||
<literal>KOI8</literal>
|
||||
<literal>WIN</literal>, <literal>ALT</literal>,
|
||||
<literal>KOI8</literal>,
|
||||
<literal>WIN1256</literal>,
|
||||
<literal>TCVN</literal>,
|
||||
<literal>WIN874</literal>,
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
@ -720,6 +755,24 @@ $ <userinput>psql -l</userinput>
|
||||
<literal>UNICODE</literal>, <literal>MULE_INTERNAL</literal>
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>WIN1256</literal></entry>
|
||||
<entry><literal>WIN1256</literal>,
|
||||
<literal>UNICODE</literal>
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>TCVN</literal></entry>
|
||||
<entry><literal>TCVN</literal>,
|
||||
<literal>UNICODE</literal>
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>WIN874</literal></entry>
|
||||
<entry><literal>WIN874</literal>,
|
||||
<literal>UNICODE</literal>
|
||||
</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</table>
|
||||
|
Reference in New Issue
Block a user