aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2009-04-01 09:17:32 +0000
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2009-04-01 09:17:32 +0000
commit00b24e1678ca3bd18535cbd14b73e38f5edc0aac (patch)
treee82a5a409e99500ef7d6de224805513171665bb7
parentdff26735d3ad5671ff3e41a0f7a41a5073eae56f (diff)
downloadpostgresql-00b24e1678ca3bd18535cbd14b73e38f5edc0aac.tar.gz
postgresql-00b24e1678ca3bd18535cbd14b73e38f5edc0aac.zip
Update comment to reflect that LC_COLLATE and LC_CTYPE are now
per-database settings.
-rw-r--r--src/backend/utils/adt/pg_locale.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/utils/adt/pg_locale.c b/src/backend/utils/adt/pg_locale.c
index a46e1572840..7472a8ef79d 100644
--- a/src/backend/utils/adt/pg_locale.c
+++ b/src/backend/utils/adt/pg_locale.c
@@ -4,16 +4,16 @@
*
* Portions Copyright (c) 2002-2009, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/backend/utils/adt/pg_locale.c,v 1.48 2009/01/27 12:45:09 mha Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/adt/pg_locale.c,v 1.49 2009/04/01 09:17:32 heikki Exp $
*
*-----------------------------------------------------------------------
*/
/*----------
* Here is how the locale stuff is handled: LC_COLLATE and LC_CTYPE
- * are fixed by initdb, stored in pg_control, and cannot be changed.
- * Thus, the effects of strcoll(), strxfrm(), isupper(), toupper(),
- * etc. are always in the same fixed locale.
+ * are fixed at CREATE DATABASE time, stored in pg_database, and cannot
+ * be changed. Thus, the effects of strcoll(), strxfrm(), isupper(),
+ * toupper(), etc. are always in the same fixed locale.
*
* LC_MESSAGES is settable at run time and will take effect
* immediately.