|
4 | 4 | *
|
5 | 5 | * Portions Copyright (c) 2002-2009, PostgreSQL Global Development Group
|
6 | 6 | *
|
7 |
| - * $PostgreSQL: pgsql/src/backend/utils/adt/pg_locale.c,v 1.48 2009/01/27 12:45:09 mha Exp $ |
| 7 | + * $PostgreSQL: pgsql/src/backend/utils/adt/pg_locale.c,v 1.49 2009/04/01 09:17:32 heikki Exp $ |
8 | 8 | *
|
9 | 9 | *-----------------------------------------------------------------------
|
10 | 10 | */
|
11 | 11 |
|
12 | 12 | /*----------
|
13 | 13 | * Here is how the locale stuff is handled: LC_COLLATE and LC_CTYPE
|
14 |
| - * are fixedby initdb, stored inpg_control, and cannotbe changed. |
15 |
| - * Thus, the effects of strcoll(), strxfrm(), isupper(), toupper(), |
16 |
| - * etc. are always in the same fixed locale. |
| 14 | + * are fixedat CREATE DATABASE time, stored inpg_database, and cannot |
| 15 | + *be changed.Thus, the effects of strcoll(), strxfrm(), isupper(), |
| 16 | + *toupper(),etc. are always in the same fixed locale. |
17 | 17 | *
|
18 | 18 | * LC_MESSAGES is settable at run time and will take effect
|
19 | 19 | * immediately.
|
|