diff options
author | John Naylor <john.naylor@postgresql.org> | 2021-08-26 13:07:34 -0400 |
---|---|---|
committer | John Naylor <john.naylor@postgresql.org> | 2021-08-26 13:07:34 -0400 |
commit | 5bc429aacb3722e55638a776332eebfa88dd60e5 (patch) | |
tree | 67af088df26dc704c6d110fd30930b52cfa71087 /src/common/unicode/generate-unicode_combining_table.pl | |
parent | bab982161e0590746a2fd2a03043b27108b23ac6 (diff) | |
download | postgresql-5bc429aacb3722e55638a776332eebfa88dd60e5.tar.gz postgresql-5bc429aacb3722e55638a776332eebfa88dd60e5.zip |
Extend collection of Unicode combining characters to beyond the BMP
The former limit was perhaps a carryover from an older hand-coded
table. Since commit bab982161 we have enough space in mbinterval to
store larger codepoints, so collect all combining characters.
Discussion: https://www.postgresql.org/message-id/49ad1fa0-174e-c901-b14c-c484b60907f1%40enterprisedb.com
Diffstat (limited to 'src/common/unicode/generate-unicode_combining_table.pl')
-rw-r--r-- | src/common/unicode/generate-unicode_combining_table.pl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/common/unicode/generate-unicode_combining_table.pl b/src/common/unicode/generate-unicode_combining_table.pl index 86aed789070..093a802f5f9 100644 --- a/src/common/unicode/generate-unicode_combining_table.pl +++ b/src/common/unicode/generate-unicode_combining_table.pl @@ -25,8 +25,6 @@ foreach my $line (<ARGV>) my @fields = split ';', $line; $codepoint = hex $fields[0]; - next if $codepoint > 0xFFFF; - if ($fields[2] eq 'Me' || $fields[2] eq 'Mn') { # combining character, save for start of range |