? GNUmakefile ? config.log ? config.status ? src/Makefile.global ? src/include/pg_config.h ? src/include/stamp-h Index: doc/src/sgml/libpq.sgml =================================================================== RCS file: /projects/cvsroot/pgsql-server/doc/src/sgml/libpq.sgml,v retrieving revision 1.158 diff -u -c -r1.158 libpq.sgml *** doc/src/sgml/libpq.sgml 11 Aug 2004 18:06:00 -0000 1.158 --- doc/src/sgml/libpq.sgml 13 Aug 2004 03:29:45 -0000 *************** *** 854,864 **** Parameters reported as of the current release include ! server_version (cannot change after startup); ! client_encoding, is_superuser, ! session_authorization, and ! DateStyle. --- 854,866 ---- Parameters reported as of the current release include ! , ! , ! , is_superuser, ! session_authorization, ! , and ! . Index: doc/src/sgml/protocol.sgml =================================================================== RCS file: /projects/cvsroot/pgsql-server/doc/src/sgml/protocol.sgml,v retrieving revision 1.52 diff -u -c -r1.52 protocol.sgml *** doc/src/sgml/protocol.sgml 11 Jun 2004 01:08:33 -0000 1.52 --- doc/src/sgml/protocol.sgml 13 Aug 2004 03:29:46 -0000 *************** *** 1046,1057 **** At present there is a hard-wired set of parameters for which ParameterStatus will be generated: they are ! server_version (a pseudo-parameter that cannot change after ! startup); ! client_encoding, is_superuser, ! session_authorization, and ! DateStyle. This set might change in the future, or even become configurable. Accordingly, a frontend should simply ignore ParameterStatus for parameters that it does not understand or care about. --- 1046,1058 ---- At present there is a hard-wired set of parameters for which ParameterStatus will be generated: they are ! , ! , ! , is_superuser, ! session_authorization, ! , and ! . This set might change in the future, or even become configurable. Accordingly, a frontend should simply ignore ParameterStatus for parameters that it does not understand or care about. Index: doc/src/sgml/runtime.sgml =================================================================== RCS file: /projects/cvsroot/pgsql-server/doc/src/sgml/runtime.sgml,v retrieving revision 1.276 diff -u -c -r1.276 runtime.sgml *** doc/src/sgml/runtime.sgml 12 Aug 2004 19:03:17 -0000 1.276 --- doc/src/sgml/runtime.sgml 13 Aug 2004 03:29:46 -0000 *************** *** 2674,2681 **** ! ! datestyle (string) date style --- 2674,2681 ---- ! ! DateStyle (string) date style *************** *** 2747,2752 **** --- 2747,2763 ---- + + server_encoding (string) + character set + + + This parameter shows the database encoding (character set). + It is determined when the database is created, and is read-only. + + + + client_encoding (string) character set *************** *** 3105,3110 **** --- 3116,3131 ---- + + server_version (string) + + + Shows the version number of the server. It is determined by the + value of PG_VERSION when building the server. + + + + block_size (integer) Index: src/backend/utils/misc/guc.c =================================================================== RCS file: /projects/cvsroot/pgsql-server/src/backend/utils/misc/guc.c,v retrieving revision 1.231 diff -u -c -r1.231 guc.c *** src/backend/utils/misc/guc.c 11 Aug 2004 21:10:37 -0000 1.231 --- src/backend/utils/misc/guc.c 13 Aug 2004 03:29:47 -0000 *************** *** 828,834 **** {"integer_datetimes", PGC_INTERNAL, COMPILE_OPTIONS, gettext_noop("Datetimes are integer based"), NULL, ! GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE }, &integer_datetimes, #ifdef HAVE_INT64_TIMESTAMP --- 828,834 ---- {"integer_datetimes", PGC_INTERNAL, COMPILE_OPTIONS, gettext_noop("Datetimes are integer based"), NULL, ! GUC_REPORT | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE }, &integer_datetimes, #ifdef HAVE_INT64_TIMESTAMP *************** *** 1624,1630 **** {"server_encoding", PGC_INTERNAL, CLIENT_CONN_LOCALE, gettext_noop("Sets the server (database) character set encoding."), NULL, ! GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE }, &server_encoding_string, "SQL_ASCII", NULL, NULL --- 1624,1630 ---- {"server_encoding", PGC_INTERNAL, CLIENT_CONN_LOCALE, gettext_noop("Sets the server (database) character set encoding."), NULL, ! GUC_REPORT | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE }, &server_encoding_string, "SQL_ASCII", NULL, NULL