Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit86a1aae

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 parent6a2c532 commit86a1aae

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‎

Lines changed: 1 addition & 1 deletion
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 for3-byte inputs */
29+
0x0000, /* offset of table for4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

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

Lines changed: 1 addition & 1 deletion
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 for3-byte inputs */\n",
582+
printf$out" 0x%04x, /* offset of table for4-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‎

Lines changed: 1 addition & 1 deletion
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 for3-byte inputs */
29+
0x0000, /* offset of table for4-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‎

Lines changed: 1 addition & 1 deletion
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 for3-byte inputs */
29+
0x0000, /* offset of table for4-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‎

Lines changed: 1 addition & 1 deletion
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 for3-byte inputs */
29+
0x0000, /* offset of table for4-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‎

Lines changed: 1 addition & 1 deletion
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 for3-byte inputs */
29+
0x0000, /* offset of table for4-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‎

Lines changed: 1 addition & 1 deletion
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 for3-byte inputs */
29+
0x1899, /* offset of table for4-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‎

Lines changed: 1 addition & 1 deletion
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 for3-byte inputs */
29+
0x5f3f, /* offset of table for4-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‎

Lines changed: 1 addition & 1 deletion
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 for3-byte inputs */
29+
0x0000, /* offset of table for4-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‎

Lines changed: 1 addition & 1 deletion
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 for3-byte inputs */
29+
0x0000, /* offset of table for4-byte inputs */
3030
0x00, /* b4_1_lower */
3131
0x00, /* b4_1_upper */
3232
0x00, /* b4_2_lower */

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp