mirror of
https://github.com/postgres/postgres.git
synced 2026-05-28 04:35:45 -04:00
Fix bug in encoding conversion map.
This commit is contained in:
parent
4c0bdd1ba8
commit
4b23f05c4f
3 changed files with 3 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
|||
static pg_local_to_utf LUmapEUC_JP[ 13477 ] = {
|
||||
static pg_local_to_utf LUmapEUC_JP[] = {
|
||||
{0x8ea1, 0xefbda1},
|
||||
{0x8ea2, 0xefbda2},
|
||||
{0x8ea3, 0xefbda3},
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
static pg_local_to_utf LUmapGB18030[ 63490 ] = {
|
||||
static pg_local_to_utf LUmapGB18030[] = {
|
||||
{0x0000, 0x0000},
|
||||
{0x0001, 0x0001},
|
||||
{0x0002, 0x0002},
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
static pg_utf_to_local ULmapGB18030[ 63489 ] = {
|
||||
static pg_utf_to_local ULmapGB18030[] = {
|
||||
{0x0000, 0x0000},
|
||||
{0x0001, 0x0001},
|
||||
{0x0002, 0x0002},
|
||||
|
|
|
|||
Loading…
Reference in a new issue