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
b37e1770
Commit
b37e1770
authored
Sep 29, 2007
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make use of additional chklocale.c entries to reject locales that we
cannot support.
parent
d5459671
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletion
+14
-1
src/bin/initdb/initdb.c
src/bin/initdb/initdb.c
+14
-1
No files found.
src/bin/initdb/initdb.c
View file @
b37e1770
...
@@ -42,7 +42,7 @@
...
@@ -42,7 +42,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
* Portions taken from FreeBSD.
* Portions taken from FreeBSD.
*
*
* $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.14
3 2007/09/28 22:25:49
tgl Exp $
* $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.14
4 2007/09/29 00:14:40
tgl Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -2800,6 +2800,7 @@ main(int argc, char *argv[])
...
@@ -2800,6 +2800,7 @@ main(int argc, char *argv[])
!
(
pg_strcasecmp
(
lc_ctype
,
"C"
)
==
0
||
!
(
pg_strcasecmp
(
lc_ctype
,
"C"
)
==
0
||
pg_strcasecmp
(
lc_ctype
,
"POSIX"
)
==
0
))
pg_strcasecmp
(
lc_ctype
,
"POSIX"
)
==
0
))
{
{
/* Hmm, couldn't recognize the locale's codeset */
fprintf
(
stderr
,
_
(
"%s: could not find suitable encoding for locale
\"
%s
\"\n
"
),
fprintf
(
stderr
,
_
(
"%s: could not find suitable encoding for locale
\"
%s
\"\n
"
),
progname
,
lc_ctype
);
progname
,
lc_ctype
);
fprintf
(
stderr
,
_
(
"Rerun %s with the -E option.
\n
"
),
progname
);
fprintf
(
stderr
,
_
(
"Rerun %s with the -E option.
\n
"
),
progname
);
...
@@ -2807,6 +2808,18 @@ main(int argc, char *argv[])
...
@@ -2807,6 +2808,18 @@ main(int argc, char *argv[])
progname
);
progname
);
exit
(
1
);
exit
(
1
);
}
}
else
if
(
!
PG_VALID_BE_ENCODING
(
ctype_enc
))
{
/* We recognized it, but it's not a legal server encoding */
fprintf
(
stderr
,
_
(
"%s: locale %s requires unsupported encoding %s
\n
"
),
progname
,
lc_ctype
,
pg_encoding_to_char
(
ctype_enc
));
fprintf
(
stderr
,
_
(
"Encoding %s is not allowed as a server-side encoding.
\n
"
"Rerun %s with a different locale selection.
\n
"
),
pg_encoding_to_char
(
ctype_enc
),
progname
);
exit
(
1
);
}
else
else
{
{
encodingid
=
encodingid_to_string
(
ctype_enc
);
encodingid
=
encodingid_to_string
(
ctype_enc
);
...
...
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