diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-01-05 00:55:24 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-01-05 00:55:24 +0000 |
commit | d514752dbf15b0a8428e6d8a1dc6cca9b9da5684 (patch) | |
tree | 66b35409b82d60017da511ef476d8f8463429002 /src/include/utils/pg_locale.h | |
parent | 37cdf43eaa58ffc8a361cefc013917ff61c8bb3d (diff) |
Arrange to set the LC_XXX environment variables to match our locale setup.
Back-patch of previous fix in HEAD for plperl-vs-locale issue.
Diffstat (limited to 'src/include/utils/pg_locale.h')
-rw-r--r-- | src/include/utils/pg_locale.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/utils/pg_locale.h b/src/include/utils/pg_locale.h index d47a5c4239c..34e80e0519f 100644 --- a/src/include/utils/pg_locale.h +++ b/src/include/utils/pg_locale.h @@ -2,7 +2,7 @@ * * PostgreSQL locale utilities * - * $Id: pg_locale.h,v 1.15 2003/08/04 23:59:41 tgl Exp $ + * $Id: pg_locale.h,v 1.15.4.1 2006/01/05 00:55:24 tgl Exp $ * * Copyright (c) 2002-2003, PostgreSQL Global Development Group * @@ -28,6 +28,8 @@ extern const char *locale_numeric_assign(const char *value, extern const char *locale_time_assign(const char *value, bool doit, bool interactive); +extern char *pg_perm_setlocale(int category, const char *locale); + extern bool lc_collate_is_c(void); /* |