|
5 | 5 | * command, configuration file, and command line options.
|
6 | 6 | * See src/backend/utils/misc/README for more information.
|
7 | 7 | *
|
8 |
| - * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.93 2002/09/04 20:31:33 momjian Exp $ |
| 8 | + * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.94 2002/09/10 16:09:02 tgl Exp $ |
9 | 9 | *
|
10 | 10 | * Copyright 2000 by PostgreSQL Global Development Group
|
11 | 11 | * Written by Peter Eisentraut <peter_e@gmx.net>.
|
@@ -767,24 +767,26 @@ static struct config_string
|
767 | 767 | PG_KRB_SRVTAB, NULL, NULL
|
768 | 768 | },
|
769 | 769 |
|
| 770 | + /* See main.c about why defaults for LC_foo are not all alike */ |
| 771 | + |
770 | 772 | {
|
771 | 773 | {"lc_messages", PGC_SUSET}, &locale_messages,
|
772 | 774 | "", locale_messages_assign, NULL
|
773 | 775 | },
|
774 | 776 |
|
775 | 777 | {
|
776 | 778 | {"lc_monetary", PGC_USERSET}, &locale_monetary,
|
777 |
| - "", locale_monetary_assign, NULL |
| 779 | + "C", locale_monetary_assign, NULL |
778 | 780 | },
|
779 | 781 |
|
780 | 782 | {
|
781 | 783 | {"lc_numeric", PGC_USERSET}, &locale_numeric,
|
782 |
| - "", locale_numeric_assign, NULL |
| 784 | + "C", locale_numeric_assign, NULL |
783 | 785 | },
|
784 | 786 |
|
785 | 787 | {
|
786 | 788 | {"lc_time", PGC_USERSET}, &locale_time,
|
787 |
| - "", locale_time_assign, NULL |
| 789 | + "C", locale_time_assign, NULL |
788 | 790 | },
|
789 | 791 |
|
790 | 792 | {
|
|
0 commit comments