Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
3a896157
Commit
3a896157
authored
Apr 24, 2020
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Unicode data to Unicode 13.0.0 and CLDR 37
parent
f9c1b8db
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
499 additions
and
362 deletions
+499
-362
contrib/unaccent/unaccent.rules
contrib/unaccent/unaccent.rules
+99
-0
src/Makefile.global.in
src/Makefile.global.in
+2
-2
src/include/common/unicode_combining_table.h
src/include/common/unicode_combining_table.h
+2
-0
src/include/common/unicode_norm_table.h
src/include/common/unicode_norm_table.h
+383
-360
src/include/common/unicode_normprops_table.h
src/include/common/unicode_normprops_table.h
+13
-0
No files found.
contrib/unaccent/unaccent.rules
View file @
3a896157
...
...
@@ -1107,6 +1107,7 @@
ℕ N
№ No
℗ (P)
℘ P
ℙ P
ℚ Q
ℛ R
...
...
@@ -1253,6 +1254,28 @@
⩴ ::=
⩵ ==
⩶ ===
Ⱡ L
ⱡ l
Ɫ L
Ᵽ P
Ɽ R
ⱥ a
ⱦ t
Ⱨ H
ⱨ h
Ⱪ K
ⱪ k
Ⱬ Z
ⱬ z
Ɱ M
ⱱ v
Ⱳ W
ⱳ w
ⱴ v
ⱸ e
ⱺ o
Ȿ S
Ɀ Z
、 ,
。 .
〇 0
...
...
@@ -1349,6 +1372,82 @@
㏝ Wb
㏞ V/m
㏟ A/m
ꜰ F
ꜱ S
Ꜳ AA
ꜳ aa
Ꜵ AO
ꜵ ao
Ꜷ AU
ꜷ au
Ꜹ AV
ꜹ av
Ꜻ AV
ꜻ av
Ꜽ AY
ꜽ ay
Ꝁ K
ꝁ k
Ꝃ K
ꝃ k
Ꝅ K
ꝅ k
Ꝇ L
ꝇ l
Ꝉ L
ꝉ l
Ꝋ O
ꝋ o
Ꝍ O
ꝍ o
Ꝏ OO
ꝏ oo
Ꝑ P
ꝑ p
Ꝓ P
ꝓ p
Ꝕ P
ꝕ p
Ꝗ Q
ꝗ q
Ꝙ Q
ꝙ q
Ꝟ V
ꝟ v
Ꝡ VY
ꝡ vy
Ꝥ TH
ꝥ th
Ꝧ TH
ꝧ th
ꝱ d
ꝲ l
ꝳ m
ꝴ n
ꝵ r
ꝶ R
ꝷ t
Ꝺ D
ꝺ d
Ꝼ F
ꝼ f
Ꞇ T
ꞇ t
Ꞑ N
ꞑ n
Ꞓ C
ꞓ c
Ꞡ G
ꞡ g
Ꞣ K
ꞣ k
Ꞥ N
ꞥ n
Ꞧ R
ꞧ r
Ꞩ S
ꞩ s
Ɦ H
ff ff
fi fi
fl fl
...
...
src/Makefile.global.in
View file @
3a896157
...
...
@@ -362,10 +362,10 @@ DOWNLOAD = wget -O $@ --no-use-server-timestamps
# Pick a release from here: <https://www.unicode.org/Public/>. Note
# that the most recent release listed there is often a pre-release;
# don't pick that one, except for testing.
UNICODE_VERSION
=
1
2.1
.0
UNICODE_VERSION
=
1
3.0
.0
# Pick a release from here: <http://cldr.unicode.org/index/downloads>
CLDR_VERSION
=
3
4
CLDR_VERSION
=
3
7
# Tree-wide build support
...
...
src/include/common/unicode_combining_table.h
View file @
3a896157
...
...
@@ -73,6 +73,7 @@ static const struct mbinterval combining[] = {
{
0x0D41
,
0x0D44
},
{
0x0D4D
,
0x0D4D
},
{
0x0D62
,
0x0D63
},
{
0x0D81
,
0x0D81
},
{
0x0DCA
,
0x0DCA
},
{
0x0DD2
,
0x0DD6
},
{
0x0E31
,
0x0E31
},
...
...
@@ -162,6 +163,7 @@ static const struct mbinterval combining[] = {
{
0xA806
,
0xA806
},
{
0xA80B
,
0xA80B
},
{
0xA825
,
0xA826
},
{
0xA82C
,
0xA82C
},
{
0xA8C4
,
0xA8C5
},
{
0xA8E0
,
0xA8F1
},
{
0xA8FF
,
0xA8FF
},
...
...
src/include/common/unicode_norm_table.h
View file @
3a896157
This diff is collapsed.
Click to expand it.
src/include/common/unicode_normprops_table.h
View file @
3a896157
...
...
@@ -687,6 +687,7 @@ static const pg_unicode_normprops UnicodeNormProps_NFC_QC[] = {
{
0x114BA
,
UNICODE_NORM_QC_MAYBE
},
{
0x114BD
,
UNICODE_NORM_QC_MAYBE
},
{
0x115AF
,
UNICODE_NORM_QC_MAYBE
},
{
0x11930
,
UNICODE_NORM_QC_MAYBE
},
{
0x1D15E
,
UNICODE_NORM_QC_NO
},
{
0x1D15F
,
UNICODE_NORM_QC_NO
},
{
0x1D160
,
UNICODE_NORM_QC_NO
},
...
...
@@ -2776,6 +2777,7 @@ static const pg_unicode_normprops UnicodeNormProps_NFKC_QC[] = {
{
0xAB5D
,
UNICODE_NORM_QC_NO
},
{
0xAB5E
,
UNICODE_NORM_QC_NO
},
{
0xAB5F
,
UNICODE_NORM_QC_NO
},
{
0xAB69
,
UNICODE_NORM_QC_NO
},
{
0xF900
,
UNICODE_NORM_QC_NO
},
{
0xF901
,
UNICODE_NORM_QC_NO
},
{
0xF902
,
UNICODE_NORM_QC_NO
},
...
...
@@ -4323,6 +4325,7 @@ static const pg_unicode_normprops UnicodeNormProps_NFKC_QC[] = {
{
0x114BA
,
UNICODE_NORM_QC_MAYBE
},
{
0x114BD
,
UNICODE_NORM_QC_MAYBE
},
{
0x115AF
,
UNICODE_NORM_QC_MAYBE
},
{
0x11930
,
UNICODE_NORM_QC_MAYBE
},
{
0x1D15E
,
UNICODE_NORM_QC_NO
},
{
0x1D15F
,
UNICODE_NORM_QC_NO
},
{
0x1D160
,
UNICODE_NORM_QC_NO
},
...
...
@@ -5609,6 +5612,16 @@ static const pg_unicode_normprops UnicodeNormProps_NFKC_QC[] = {
{
0x1F248
,
UNICODE_NORM_QC_NO
},
{
0x1F250
,
UNICODE_NORM_QC_NO
},
{
0x1F251
,
UNICODE_NORM_QC_NO
},
{
0x1FBF0
,
UNICODE_NORM_QC_NO
},
{
0x1FBF1
,
UNICODE_NORM_QC_NO
},
{
0x1FBF2
,
UNICODE_NORM_QC_NO
},
{
0x1FBF3
,
UNICODE_NORM_QC_NO
},
{
0x1FBF4
,
UNICODE_NORM_QC_NO
},
{
0x1FBF5
,
UNICODE_NORM_QC_NO
},
{
0x1FBF6
,
UNICODE_NORM_QC_NO
},
{
0x1FBF7
,
UNICODE_NORM_QC_NO
},
{
0x1FBF8
,
UNICODE_NORM_QC_NO
},
{
0x1FBF9
,
UNICODE_NORM_QC_NO
},
{
0x2F800
,
UNICODE_NORM_QC_NO
},
{
0x2F801
,
UNICODE_NORM_QC_NO
},
{
0x2F802
,
UNICODE_NORM_QC_NO
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment