Skip to content

Commit 86a1aae

Browse files
committed
Fix typo in comment
Author: Kyotaro Horiguchi <horikyota.ntt@gmail.com> Discussion: https://www.postgresql.org/message-id/flat/20210716.170209.175434392011070182.horikyota.ntt%40gmail.com
1 parent 6a2c532 commit 86a1aae

File tree

77 files changed

+77
-77
lines changed

Some content is hidden

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

77 files changed

+77
-77
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree big5_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

src/backend/utils/mb/Unicode/convutils.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ sub print_radix_table
579579
printf $out " 0x%02x, /* b3_3_lower */\n", $b3_3_lower;
580580
printf $out " 0x%02x, /* b3_3_upper */\n", $b3_3_upper;
581581
printf $out "\n";
582-
printf $out " 0x%04x, /* offset of table for 3-byte inputs */\n",
582+
printf $out " 0x%04x, /* offset of table for 4-byte inputs */\n",
583583
$b4root;
584584
printf $out " 0x%02x, /* b4_1_lower */\n", $b4_1_lower;
585585
printf $out " 0x%02x, /* b4_1_upper */\n", $b4_1_upper;

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree euc_cn_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree euc_jis_2004_to_unicode_tree =
2626
0xa1, /* b3_3_lower */
2727
0xfe, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree euc_jp_to_unicode_tree =
2626
0xa1, /* b3_3_lower */
2727
0xfe, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree euc_kr_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree euc_tw_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x1899, /* offset of table for 3-byte inputs */
29+
0x1899, /* offset of table for 4-byte inputs */
3030
0x8e, /* b4_1_lower */
3131
0x8e, /* b4_1_upper */
3232
0xa1, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree gb18030_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x5f3f, /* offset of table for 3-byte inputs */
29+
0x5f3f, /* offset of table for 4-byte inputs */
3030
0x81, /* b4_1_lower */
3131
0x84, /* b4_1_upper */
3232
0x30, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree gbk_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_10_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_13_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_14_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_15_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_16_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_2_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_3_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_4_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_5_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_6_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_7_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_8_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_9_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree johab_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree koi8r_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree koi8u_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree shift_jis_2004_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree sjis_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree uhc_to_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree big5_from_unicode_tree =
2626
0x80, /* b3_3_lower */
2727
0xbf, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree euc_cn_from_unicode_tree =
2626
0x80, /* b3_3_lower */
2727
0xbf, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree euc_jis_2004_from_unicode_tree =
2626
0x80, /* b3_3_lower */
2727
0xbf, /* b3_3_upper */
2828

29-
0x6fc1, /* offset of table for 3-byte inputs */
29+
0x6fc1, /* offset of table for 4-byte inputs */
3030
0xf0, /* b4_1_lower */
3131
0xf0, /* b4_1_upper */
3232
0xa0, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree euc_jp_from_unicode_tree =
2626
0x80, /* b3_3_lower */
2727
0xbf, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree euc_kr_from_unicode_tree =
2626
0x80, /* b3_3_lower */
2727
0xbf, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree euc_tw_from_unicode_tree =
2626
0x80, /* b3_3_lower */
2727
0xbf, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree gb18030_from_unicode_tree =
2626
0x80, /* b3_3_lower */
2727
0xbf, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree gbk_from_unicode_tree =
2626
0x80, /* b3_3_lower */
2727
0xbf, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_10_from_unicode_tree =
2626
0x95, /* b3_3_lower */
2727
0x95, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_13_from_unicode_tree =
2626
0x99, /* b3_3_lower */
2727
0x9e, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_14_from_unicode_tree =
2626
0x80, /* b3_3_lower */
2727
0xb3, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_15_from_unicode_tree =
2626
0xac, /* b3_3_lower */
2727
0xac, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_16_from_unicode_tree =
2626
0x9d, /* b3_3_lower */
2727
0xac, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_2_from_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_3_from_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const pg_mb_radix_tree iso8859_4_from_unicode_tree =
2626
0x00, /* b3_3_lower */
2727
0x00, /* b3_3_upper */
2828

29-
0x0000, /* offset of table for 3-byte inputs */
29+
0x0000, /* offset of table for 4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

0 commit comments

Comments
 (0)