Skip to content

Commit e17dab5

Browse files
committed
Auto-generate file header comments in Unicode mapping files.
Some of the Unicode/*.map files had identification comments added to them, evidently by hand. Others did not. Modify the generating scripts to produce these comments automatically, and update the generated files that lacked them. This is just minor cleanup as a by-product of trying to verify that the *.map files can indeed be reproduced from authoritative data. There are a depressingly large number that fail to reproduce from the claimed sources. I have not touched those in this commit, except for the JIS 2004-related files which required only a single comment update to match. Since this only affects comments, no need to consider a back-patch.
1 parent 40cb21f commit e17dab5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+122
-4
lines changed

src/backend/utils/mb/Unicode/UCS_to_BIG5.pl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@
9797

9898
$file = lc("utf8_to_big5.map");
9999
open(FILE, "> $file") || die("cannot open $file");
100+
101+
print FILE "/* src/backend/utils/mb/Unicode/$file */\n\n";
100102
print FILE "static const pg_utf_to_local ULmapBIG5[ $count ] = {\n";
101103

102104
for $index (sort { $a <=> $b } keys(%array))
@@ -185,6 +187,8 @@
185187

186188
$file = lc("big5_to_utf8.map");
187189
open(FILE, "> $file") || die("cannot open $file");
190+
191+
print FILE "/* src/backend/utils/mb/Unicode/$file */\n\n";
188192
print FILE "static const pg_local_to_utf LUmapBIG5[ $count ] = {\n";
189193
for $index (sort { $a <=> $b } keys(%array))
190194
{

src/backend/utils/mb/Unicode/UCS_to_EUC_CN.pl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@
5555

5656
$file = "utf8_to_euc_cn.map";
5757
open(FILE, "> $file") || die("cannot open $file");
58+
59+
print FILE "/* src/backend/utils/mb/Unicode/$file */\n\n";
5860
print FILE "static const pg_utf_to_local ULmapEUC_CN[ $count ] = {\n";
5961

6062
for $index (sort { $a <=> $b } keys(%array))
@@ -109,6 +111,8 @@
109111

110112
$file = "euc_cn_to_utf8.map";
111113
open(FILE, "> $file") || die("cannot open $file");
114+
115+
print FILE "/* src/backend/utils/mb/Unicode/$file */\n\n";
112116
print FILE "static const pg_local_to_utf LUmapEUC_CN[ $count ] = {\n";
113117
for $index (sort { $a <=> $b } keys(%array))
114118
{

src/backend/utils/mb/Unicode/UCS_to_EUC_JP.pl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,8 @@
136136

137137
$file = "utf8_to_euc_jp.map";
138138
open(FILE, "> $file") || die("cannot open $file");
139+
140+
print FILE "/* src/backend/utils/mb/Unicode/$file */\n\n";
139141
print FILE "static const pg_utf_to_local ULmapEUC_JP[ $count ] = {\n";
140142

141143
for $index (sort { $a <=> $b } keys(%array))
@@ -263,6 +265,8 @@
263265

264266
$file = "euc_jp_to_utf8.map";
265267
open(FILE, "> $file") || die("cannot open $file");
268+
269+
print FILE "/* src/backend/utils/mb/Unicode/$file */\n\n";
266270
print FILE "static const pg_local_to_utf LUmapEUC_JP[ $count ] = {\n";
267271
for $index (sort { $a <=> $b } keys(%array))
268272
{

src/backend/utils/mb/Unicode/UCS_to_EUC_KR.pl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@
5555

5656
$file = "utf8_to_euc_kr.map";
5757
open(FILE, "> $file") || die("cannot open $file");
58+
59+
print FILE "/* src/backend/utils/mb/Unicode/$file */\n\n";
5860
print FILE "static const pg_utf_to_local ULmapEUC_KR[ $count ] = {\n";
5961

6062
for $index (sort { $a <=> $b } keys(%array))
@@ -109,6 +111,8 @@
109111

110112
$file = "euc_kr_to_utf8.map";
111113
open(FILE, "> $file") || die("cannot open $file");
114+
115+
print FILE "/* src/backend/utils/mb/Unicode/$file */\n\n";
112116
print FILE "static const pg_local_to_utf LUmapEUC_KR[ $count ] = {\n";
113117
for $index (sort { $a <=> $b } keys(%array))
114118
{

src/backend/utils/mb/Unicode/UCS_to_EUC_TW.pl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@
7171

7272
$file = "utf8_to_euc_tw.map";
7373
open(FILE, "> $file") || die("cannot open $file");
74+
75+
print FILE "/* src/backend/utils/mb/Unicode/$file */\n\n";
7476
print FILE "static const pg_utf_to_local ULmapEUC_TW[ $count ] = {\n";
7577

7678
for $index (sort { $a <=> $b } keys(%array))
@@ -138,6 +140,8 @@
138140

139141
$file = "euc_tw_to_utf8.map";
140142
open(FILE, "> $file") || die("cannot open $file");
143+
144+
print FILE "/* src/backend/utils/mb/Unicode/$file */\n\n";
141145
print FILE "static const pg_local_to_utf LUmapEUC_TW[ $count ] = {\n";
142146
for $index (sort { $a <=> $b } keys(%array))
143147
{

src/backend/utils/mb/Unicode/UCS_to_GB18030.pl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@
5656

5757
$file = "utf8_to_gb18030.map";
5858
open(FILE, "> $file") || die("cannot open $file");
59+
60+
print FILE "/* src/backend/utils/mb/Unicode/$file */\n\n";
5961
print FILE "static const pg_utf_to_local ULmapGB18030[ $count ] = {\n";
6062

6163
$cc = $count;
@@ -83,6 +85,8 @@
8385

8486
$file = "gb18030_to_utf8.map";
8587
open(FILE, "> $file") || die("cannot open $file");
88+
89+
print FILE "/* src/backend/utils/mb/Unicode/$file */\n\n";
8690
print FILE "static const pg_local_to_utf LUmapGB18030[ $count ] = {\n";
8791

8892
$cc = $count;

src/backend/utils/mb/Unicode/UCS_to_SJIS.pl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@
7272

7373
$file = "utf8_to_sjis.map";
7474
open(FILE, "> $file") || die("cannot open $file");
75+
76+
print FILE "/* src/backend/utils/mb/Unicode/$file */\n\n";
7577
print FILE "static const pg_utf_to_local ULmapSJIS[ $count ] = {\n";
7678

7779
for $index (sort { $a <=> $b } keys(%array))
@@ -122,6 +124,8 @@
122124

123125
$file = "sjis_to_utf8.map";
124126
open(FILE, "> $file") || die("cannot open $file");
127+
128+
print FILE "/* src/backend/utils/mb/Unicode/$file */\n\n";
125129
print FILE "static const pg_local_to_utf LUmapSJIS[ $count ] = {\n";
126130
for $index (sort { $a <=> $b } keys(%array))
127131
{

src/backend/utils/mb/Unicode/UCS_to_most.pl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@
8888

8989
$file = lc("utf8_to_${charset}.map");
9090
open(FILE, "> $file") || die("cannot open $file");
91+
92+
print FILE "/* src/backend/utils/mb/Unicode/$file */\n\n";
9193
print FILE "static const pg_utf_to_local ULmap${charset}[ $count ] = {\n";
9294

9395
for $index (sort { $a <=> $b } keys(%array))
@@ -140,6 +142,8 @@
140142

141143
$file = lc("${charset}_to_utf8.map");
142144
open(FILE, "> $file") || die("cannot open $file");
145+
146+
print FILE "/* src/backend/utils/mb/Unicode/$file */\n\n";
143147
print FILE "static const pg_local_to_utf LUmap${charset}[ $count ] = {\n";
144148
for $index (sort { $a <=> $b } keys(%array))
145149
{

src/backend/utils/mb/Unicode/big5_to_utf8.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/big5_to_utf8.map */
2+
13
static const pg_local_to_utf LUmapBIG5[ 13717 ] = {
24
{0xa140, 0xe38080},
35
{0xa141, 0xefbc8c},

src/backend/utils/mb/Unicode/euc_jis_2004_to_utf8.map

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ static const pg_local_to_utf LUmapEUC_JIS_2004[] = {
333333
{0x00a2ac, 0x00e28691}, /* U+2191 UPWARDS ARROW */
334334
{0x00a2ad, 0x00e28693}, /* U+2193 DOWNWARDS ARROW */
335335
{0x00a2ae, 0x00e38093}, /* U+3013 GETA MARK */
336-
{0x00a2af, 0x00efbc87}, /* U+FF07 FULLWIDTH APOSTROPHE */
336+
{0x00a2af, 0x00efbc87}, /* U+FF07 FULLWIDTH APOSTROPHE [2000] */
337337
{0x00a2b0, 0x00efbc82}, /* U+FF02 FULLWIDTH QUOTATION MARK [2000] */
338338
{0x00a2b1, 0x00efbc8d}, /* U+FF0D FULLWIDTH HYPHEN-MINUS [2000] */
339339
{0x00a2b2, 0x00efbd9e}, /* U+FF5E FULLWIDTH TILDE [2000] */

src/backend/utils/mb/Unicode/koi8u_to_utf8.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/koi8u_to_utf8.map */
2+
13
static const pg_local_to_utf LUmapKOI8U[ 128 ] = {
24
{0x0080, 0xe29480},
35
{0x0081, 0xe29482},

src/backend/utils/mb/Unicode/shift_jis_2004_to_utf8.map

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ static const pg_local_to_utf LUmapSHIFT_JIS_2004[] = {
301301
{0x81aa, 0x00e28691}, /* U+2191 UPWARDS ARROW */
302302
{0x81ab, 0x00e28693}, /* U+2193 DOWNWARDS ARROW */
303303
{0x81ac, 0x00e38093}, /* U+3013 GETA MARK */
304-
{0x81ad, 0x00efbc87}, /* U+FF07 FULLWIDTH APOSTROPHE */
304+
{0x81ad, 0x00efbc87}, /* U+FF07 FULLWIDTH APOSTROPHE [2000] */
305305
{0x81ae, 0x00efbc82}, /* U+FF02 FULLWIDTH QUOTATION MARK [2000] */
306306
{0x81af, 0x00efbc8d}, /* U+FF0D FULLWIDTH HYPHEN-MINUS [2000] */
307307
{0x81b0, 0x0000007e}, /* U+007E TILDE [2000] Fullwidth: U+FF5E */

src/backend/utils/mb/Unicode/sjis_to_utf8.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/sjis_to_utf8.map */
2+
13
static const pg_local_to_utf LUmapSJIS[ 7787 ] = {
24
{0x00a1, 0xefbda1},
35
{0x00a2, 0xefbda2},

src/backend/utils/mb/Unicode/utf8_to_big5.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_big5.map */
2+
13
static const pg_utf_to_local ULmapBIG5[ 13711 ] = {
24
{0xc2a2, 0xa246},
35
{0xc2a3, 0xa247},

src/backend/utils/mb/Unicode/utf8_to_euc_jis_2004.map

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10977,7 +10977,7 @@ static const pg_utf_to_local ULmapEUC_JIS_2004[] = {
1097710977
{0x00efbc84, 0x00a1f0}, /* U+FF04 FULLWIDTH DOLLAR SIGN */
1097810978
{0x00efbc85, 0x00a1f3}, /* U+FF05 FULLWIDTH PERCENT SIGN */
1097910979
{0x00efbc86, 0x00a1f5}, /* U+FF06 FULLWIDTH AMPERSAND */
10980-
{0x00efbc87, 0x00a2af}, /* U+FF07 FULLWIDTH APOSTROPHE */
10980+
{0x00efbc87, 0x00a2af}, /* U+FF07 FULLWIDTH APOSTROPHE [2000] */
1098110981
{0x00efbc88, 0x00a1ca}, /* U+FF08 FULLWIDTH LEFT PARENTHESIS */
1098210982
{0x00efbc89, 0x00a1cb}, /* U+FF09 FULLWIDTH RIGHT PARENTHESIS */
1098310983
{0x00efbc8a, 0x00a1f6}, /* U+FF0A FULLWIDTH ASTERISK */

src/backend/utils/mb/Unicode/utf8_to_euc_tw.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_euc_tw.map */
2+
13
static const pg_utf_to_local ULmapEUC_TW[ 17711 ] = {
24
{0xc2a7, 0xa1f0},
35
{0xc2b0, 0xa2f8},

src/backend/utils/mb/Unicode/utf8_to_gbk.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_gbk.map */
2+
13
static const pg_utf_to_local ULmapGBK[ 21792 ] = {
24
{0xc2a4, 0xa1e8},
35
{0xc2a7, 0xa1ec},

src/backend/utils/mb/Unicode/utf8_to_iso8859_10.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_iso8859_10.map */
2+
13
static const pg_utf_to_local ULmapISO8859_10[ 128 ] = {
24
{0xc280, 0x0080},
35
{0xc281, 0x0081},

src/backend/utils/mb/Unicode/utf8_to_iso8859_13.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_iso8859_13.map */
2+
13
static const pg_utf_to_local ULmapISO8859_13[ 128 ] = {
24
{0xc280, 0x0080},
35
{0xc281, 0x0081},

src/backend/utils/mb/Unicode/utf8_to_iso8859_14.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_iso8859_14.map */
2+
13
static const pg_utf_to_local ULmapISO8859_14[ 128 ] = {
24
{0xc280, 0x0080},
35
{0xc281, 0x0081},

src/backend/utils/mb/Unicode/utf8_to_iso8859_15.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_iso8859_15.map */
2+
13
static const pg_utf_to_local ULmapISO8859_15[ 128 ] = {
24
{0xc280, 0x0080},
35
{0xc281, 0x0081},

src/backend/utils/mb/Unicode/utf8_to_iso8859_16.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_iso8859_16.map */
2+
13
static const pg_utf_to_local ULmapISO8859_16[ 128 ] = {
24
{0xc280, 0x0080},
35
{0xc281, 0x0081},

src/backend/utils/mb/Unicode/utf8_to_iso8859_2.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_iso8859_2.map */
2+
13
static const pg_utf_to_local ULmapISO8859_2[ 128 ] = {
24
{0xc280, 0x0080},
35
{0xc281, 0x0081},

src/backend/utils/mb/Unicode/utf8_to_iso8859_3.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_iso8859_3.map */
2+
13
static const pg_utf_to_local ULmapISO8859_3[ 121 ] = {
24
{0xc280, 0x0080},
35
{0xc281, 0x0081},

src/backend/utils/mb/Unicode/utf8_to_iso8859_4.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_iso8859_4.map */
2+
13
static const pg_utf_to_local ULmapISO8859_4[ 128 ] = {
24
{0xc280, 0x0080},
35
{0xc281, 0x0081},

src/backend/utils/mb/Unicode/utf8_to_iso8859_5.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_iso8859_5.map */
2+
13
static const pg_utf_to_local ULmapISO8859_5[ 128 ] = {
24
{0xc280, 0x0080},
35
{0xc281, 0x0081},

src/backend/utils/mb/Unicode/utf8_to_iso8859_6.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_iso8859_6.map */
2+
13
static const pg_utf_to_local ULmapISO8859_6[ 83 ] = {
24
{0xc280, 0x0080},
35
{0xc281, 0x0081},

src/backend/utils/mb/Unicode/utf8_to_iso8859_7.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_iso8859_7.map */
2+
13
static const pg_utf_to_local ULmapISO8859_7[ 125 ] = {
24
{0xc280, 0x0080},
35
{0xc281, 0x0081},

src/backend/utils/mb/Unicode/utf8_to_iso8859_8.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_iso8859_8.map */
2+
13
static const pg_utf_to_local ULmapISO8859_8[ 92 ] = {
24
{0xc280, 0x0080},
35
{0xc281, 0x0081},

src/backend/utils/mb/Unicode/utf8_to_iso8859_9.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_iso8859_9.map */
2+
13
static const pg_utf_to_local ULmapISO8859_9[ 128 ] = {
24
{0xc280, 0x0080},
35
{0xc281, 0x0081},

src/backend/utils/mb/Unicode/utf8_to_koi8r.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_koi8r.map */
2+
13
static const pg_utf_to_local ULmapKOI8R[ 128 ] = {
24
{0xc2a0, 0x009a},
35
{0xc2a9, 0x00bf},

src/backend/utils/mb/Unicode/utf8_to_koi8u.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_koi8u.map */
2+
13
static const pg_utf_to_local ULmapKOI8U[ 128 ] = {
24
{0xc2a0, 0x009a},
35
{0xc2a9, 0x00bf},

src/backend/utils/mb/Unicode/utf8_to_shift_jis_2004.map

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10945,7 +10945,7 @@ static const pg_utf_to_local ULmapSHIFT_JIS_2004[] = {
1094510945
{0x00efbc84, 0x008190}, /* U+FF04 FULLWIDTH DOLLAR SIGN */
1094610946
{0x00efbc85, 0x008193}, /* U+FF05 FULLWIDTH PERCENT SIGN */
1094710947
{0x00efbc86, 0x008195}, /* U+FF06 FULLWIDTH AMPERSAND */
10948-
{0x00efbc87, 0x0081ad}, /* U+FF07 FULLWIDTH APOSTROPHE */
10948+
{0x00efbc87, 0x0081ad}, /* U+FF07 FULLWIDTH APOSTROPHE [2000] */
1094910949
{0x00efbc88, 0x008169}, /* U+FF08 FULLWIDTH LEFT PARENTHESIS */
1095010950
{0x00efbc89, 0x00816a}, /* U+FF09 FULLWIDTH RIGHT PARENTHESIS */
1095110951
{0x00efbc8a, 0x008196}, /* U+FF0A FULLWIDTH ASTERISK */

src/backend/utils/mb/Unicode/utf8_to_win1250.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_win1250.map */
2+
13
static const pg_utf_to_local ULmapWIN1250[ 123 ] = {
24
{0xc2a0, 0x00a0},
35
{0xc2a4, 0x00a4},

src/backend/utils/mb/Unicode/utf8_to_win1251.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_win1251.map */
2+
13
static const pg_utf_to_local ULmapWIN1251[ 127 ] = {
24
{0xc2a0, 0x00a0},
35
{0xc2a4, 0x00a4},

src/backend/utils/mb/Unicode/utf8_to_win1252.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_win1252.map */
2+
13
static const pg_utf_to_local ULmapWIN1252[ 123 ] = {
24
{0xc2a0, 0x00a0},
35
{0xc2a1, 0x00a1},

src/backend/utils/mb/Unicode/utf8_to_win1253.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_win1253.map */
2+
13
static const pg_utf_to_local ULmapWIN1253[ 111 ] = {
24
{0xc2a0, 0x00a0},
35
{0xc2a3, 0x00a3},

src/backend/utils/mb/Unicode/utf8_to_win1254.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_win1254.map */
2+
13
static const pg_utf_to_local ULmapWIN1254[ 121 ] = {
24
{0xc2a0, 0x00a0},
35
{0xc2a1, 0x00a1},

src/backend/utils/mb/Unicode/utf8_to_win1255.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_win1255.map */
2+
13
static const pg_utf_to_local ULmapWIN1255[ 105 ] = {
24
{0xc2a0, 0x00a0},
35
{0xc2a1, 0x00a1},

src/backend/utils/mb/Unicode/utf8_to_win1256.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_win1256.map */
2+
13
static const pg_utf_to_local ULmapWIN1256[ 128 ] = {
24
{0xc2a0, 0x00a0},
35
{0xc2a2, 0x00a2},

src/backend/utils/mb/Unicode/utf8_to_win1257.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_win1257.map */
2+
13
static const pg_utf_to_local ULmapWIN1257[ 116 ] = {
24
{0xc2a0, 0x00a0},
35
{0xc2a2, 0x00a2},

src/backend/utils/mb/Unicode/utf8_to_win1258.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_win1258.map */
2+
13
static const pg_utf_to_local ULmapWIN1258[ 119 ] = {
24
{0xc2a0, 0x00a0},
35
{0xc2a1, 0x00a1},

src/backend/utils/mb/Unicode/utf8_to_win866.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_win866.map */
2+
13
static const pg_utf_to_local ULmapWIN866[ 128 ] = {
24
{0xc2a0, 0x00ff},
35
{0xc2a4, 0x00fd},

src/backend/utils/mb/Unicode/utf8_to_win874.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/utf8_to_win874.map */
2+
13
static const pg_utf_to_local ULmapWIN874[ 97 ] = {
24
{0xc2a0, 0x00a0},
35
{0xe0b881, 0x00a1},

src/backend/utils/mb/Unicode/win1250_to_utf8.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/win1250_to_utf8.map */
2+
13
static const pg_local_to_utf LUmapWIN1250[ 123 ] = {
24
{0x0080, 0xe282ac},
35
{0x0082, 0xe2809a},

src/backend/utils/mb/Unicode/win1251_to_utf8.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/win1251_to_utf8.map */
2+
13
static const pg_local_to_utf LUmapWIN1251[ 127 ] = {
24
{0x0080, 0xd082},
35
{0x0081, 0xd083},

src/backend/utils/mb/Unicode/win1252_to_utf8.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/win1252_to_utf8.map */
2+
13
static const pg_local_to_utf LUmapWIN1252[ 123 ] = {
24
{0x0080, 0xe282ac},
35
{0x0082, 0xe2809a},

src/backend/utils/mb/Unicode/win1253_to_utf8.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* src/backend/utils/mb/Unicode/win1253_to_utf8.map */
2+
13
static const pg_local_to_utf LUmapWIN1253[ 111 ] = {
24
{0x0080, 0xe282ac},
35
{0x0082, 0xe2809a},

0 commit comments

Comments
 (0)