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
3adba41a
Commit
3adba41a
authored
May 07, 2005
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add comment on C locale test for upper/lower/initcap().
parent
d733f110
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
4 deletions
+16
-4
src/backend/utils/adt/oracle_compat.c
src/backend/utils/adt/oracle_compat.c
+16
-4
No files found.
src/backend/utils/adt/oracle_compat.c
View file @
3adba41a
...
...
@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/oracle_compat.c,v 1.
59 2005/03/16 01:49:10
momjian Exp $
* $PostgreSQL: pgsql/src/backend/utils/adt/oracle_compat.c,v 1.
60 2005/05/07 15:18:17
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -167,7 +167,11 @@ Datum
lower
(
PG_FUNCTION_ARGS
)
{
#ifdef USE_WIDE_UPPER_LOWER
/* use wide char code only when max encoding length > 1 and ctype != C */
/*
* Use wide char code only when max encoding length > 1 and ctype != C.
* Some operating systems fail with multi-byte encodings and a C locale.
* Also, for a C locale there is no need to process as multibyte.
*/
if
(
pg_database_encoding_max_length
()
>
1
&&
!
lc_ctype_is_c
())
{
text
*
string
=
PG_GETARG_TEXT_P
(
0
);
...
...
@@ -229,7 +233,11 @@ Datum
upper
(
PG_FUNCTION_ARGS
)
{
#ifdef USE_WIDE_UPPER_LOWER
/* use wide char code only when max encoding length > 1 and ctype != C */
/*
* Use wide char code only when max encoding length > 1 and ctype != C.
* Some operating systems fail with multi-byte encodings and a C locale.
* Also, for a C locale there is no need to process as multibyte.
*/
if
(
pg_database_encoding_max_length
()
>
1
&&
!
lc_ctype_is_c
())
{
text
*
string
=
PG_GETARG_TEXT_P
(
0
);
...
...
@@ -294,7 +302,11 @@ Datum
initcap
(
PG_FUNCTION_ARGS
)
{
#ifdef USE_WIDE_UPPER_LOWER
/* use wide char code only when max encoding length > 1 and ctype != C */
/*
* Use wide char code only when max encoding length > 1 and ctype != C.
* Some operating systems fail with multi-byte encodings and a C locale.
* Also, for a C locale there is no need to process as multibyte.
*/
if
(
pg_database_encoding_max_length
()
>
1
&&
!
lc_ctype_is_c
())
{
text
*
string
=
PG_GETARG_TEXT_P
(
0
);
...
...
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