mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
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
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user