From: Tom Lane Date: Sat, 23 Mar 2013 18:06:40 +0000 (-0400) Subject: Don't put before in items. X-Git-Tag: REL9_1_9~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7a9670b044bd74c183f28ae801158a9857653933;p=postgresql Don't put before in items. Doing that results in a broken index entry in PDF output. We had only a few like that, which is probably why nobody noticed before. Standardize on putting the first. Josh Kupershmidt --- diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 1e42a2619b..7e67f9c250 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -1457,10 +1457,10 @@ SET ENABLE_SEQSCAN TO OFF; + fsync (boolean) fsync configuration parameter - fsync (boolean) If this parameter is on, the PostgreSQL server @@ -1614,10 +1614,10 @@ SET ENABLE_SEQSCAN TO OFF; + full_page_writes (boolean) full_page_writes configuration parameter - full_page_writes (boolean) When this parameter is on, the PostgreSQL server @@ -2636,6 +2636,7 @@ SET ENABLE_SEQSCAN TO OFF; + geqo (boolean) genetic query optimization @@ -2646,7 +2647,6 @@ SET ENABLE_SEQSCAN TO OFF; geqo configuration parameter - geqo (boolean) Enables or disables genetic query optimization. @@ -4665,6 +4665,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; + default_transaction_isolation (enum) transaction isolation level setting default @@ -4672,7 +4673,6 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; default_transaction_isolation configuration parameter - default_transaction_isolation (enum) Each SQL transaction has an isolation level, which can be @@ -4691,6 +4691,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; + default_transaction_read_only (boolean) read-only transaction setting default @@ -4698,8 +4699,6 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; default_transaction_read_only configuration parameter - - default_transaction_read_only (boolean) A read-only SQL transaction cannot alter non-temporary tables. @@ -4714,6 +4713,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; + default_transaction_deferrable (boolean) deferrable transaction setting default @@ -4721,8 +4721,6 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; default_transaction_deferrable configuration parameter - - default_transaction_deferrable (boolean) When running at the serializable isolation level, @@ -5005,6 +5003,7 @@ SET XML OPTION { DOCUMENT | CONTENT }; + extra_float_digits (integer) significant digits @@ -5015,8 +5014,6 @@ SET XML OPTION { DOCUMENT | CONTENT }; extra_float_digits configuration parameter - - extra_float_digits (integer) This parameter adjusts the number of digits displayed for @@ -5292,6 +5289,7 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir' + deadlock_timeout (integer) deadlock timeout during @@ -5303,8 +5301,6 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir' deadlock_timeout configuration parameter - - deadlock_timeout (integer) This is the amount of time, in milliseconds, to wait on a lock diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index 374196754a..99653a9ed5 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -2393,11 +2393,11 @@ char *PQresultErrorField(const PGresult *res, int fieldcode); + PG_DIAG_SQLSTATE error codes libpq - PG_DIAG_SQLSTATE The SQLSTATE code for the error. The SQLSTATE code identifies