Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
4ed6be54
Commit
4ed6be54
authored
22 years ago
by
Peter Eisentraut
Browse files
Options
Downloads
Patches
Plain Diff
Fix Latin9/Unicode conversion by selecting the right table.
parent
780651d0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/backend/utils/mb/conversion_procs/utf8_and_iso8859/utf8_and_iso8859.c
+2
-2
2 additions, 2 deletions
...s/mb/conversion_procs/utf8_and_iso8859/utf8_and_iso8859.c
with
2 additions
and
2 deletions
src/backend/utils/mb/conversion_procs/utf8_and_iso8859/utf8_and_iso8859.c
+
2
−
2
View file @
4ed6be54
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_iso8859/utf8_and_iso8859.c,v 1.
5
2002/1
0/26 15:01:00 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_iso8859/utf8_and_iso8859.c,v 1.
6
2002/1
2/09 19:47:21 petere
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -98,7 +98,7 @@ static pg_conv_map maps[] = {
...
@@ -98,7 +98,7 @@ static pg_conv_map maps[] = {
{
PG_LATIN8
,
LUmapISO8859_14
,
ULmapISO8859_14
,
{
PG_LATIN8
,
LUmapISO8859_14
,
ULmapISO8859_14
,
sizeof
(
LUmapISO8859_14
)
/
sizeof
(
pg_local_to_utf
),
sizeof
(
LUmapISO8859_14
)
/
sizeof
(
pg_local_to_utf
),
sizeof
(
ULmapISO8859_14
)
/
sizeof
(
pg_utf_to_local
)},
/* ISO-8859-14 Latin 8 */
sizeof
(
ULmapISO8859_14
)
/
sizeof
(
pg_utf_to_local
)},
/* ISO-8859-14 Latin 8 */
{
PG_LATIN9
,
LUmapISO8859_
2
,
ULmapISO8859_
2
,
{
PG_LATIN9
,
LUmapISO8859_
15
,
ULmapISO8859_
15
,
sizeof
(
LUmapISO8859_15
)
/
sizeof
(
pg_local_to_utf
),
sizeof
(
LUmapISO8859_15
)
/
sizeof
(
pg_local_to_utf
),
sizeof
(
ULmapISO8859_15
)
/
sizeof
(
pg_utf_to_local
)},
/* ISO-8859-15 Latin 9 */
sizeof
(
ULmapISO8859_15
)
/
sizeof
(
pg_utf_to_local
)},
/* ISO-8859-15 Latin 9 */
{
PG_LATIN10
,
LUmapISO8859_16
,
ULmapISO8859_16
,
{
PG_LATIN10
,
LUmapISO8859_16
,
ULmapISO8859_16
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment