diff options
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/config.sgml | 46 | ||||
-rw-r--r-- | doc/src/sgml/ref/postgres-ref.sgml | 12 |
2 files changed, 20 insertions, 38 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 697cf99de54..8f0ca4c1eb6 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -6722,6 +6722,26 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir' </listitem> </varlistentry> + <varlistentry id="guc-debug-assertions" xreflabel="debug_assertions"> + <term><varname>debug_assertions</varname> (<type>boolean</type>) + <indexterm> + <primary><varname>debug_assertions</> configuration parameter</primary> + </indexterm> + </term> + <listitem> + <para> + Reports whether <productname>PostgreSQL</productname> has been built + with assertions enabled. That is the case if the + macro <symbol>USE_ASSERT_CHECKING</symbol> is defined + when <productname>PostgreSQL</productname> is built (accomplished + e.g. by the <command>configure</command> option + <option>--enable-cassert</option>). By + default <productname>PostgreSQL</productname> is built without + assertions. + </para> + </listitem> + </varlistentry> + <varlistentry id="guc-integer-datetimes" xreflabel="integer_datetimes"> <term><varname>integer_datetimes</varname> (<type>boolean</type>) <indexterm> @@ -6973,28 +6993,6 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir' </listitem> </varlistentry> - <varlistentry id="guc-debug-assertions" xreflabel="debug_assertions"> - <term><varname>debug_assertions</varname> (<type>boolean</type>) - <indexterm> - <primary><varname>debug_assertions</> configuration parameter</primary> - </indexterm> - </term> - <listitem> - <para> - Turns on various assertion checks. This is a debugging aid. If - you are experiencing strange problems or crashes you might want - to turn this on, as it might expose programming mistakes. To use - this parameter, the macro <symbol>USE_ASSERT_CHECKING</symbol> - must be defined when <productname>PostgreSQL</productname> is - built (accomplished by the <command>configure</command> option - <option>--enable-cassert</option>). Note that - <varname>debug_assertions</varname> defaults to <literal>on</> - if <productname>PostgreSQL</productname> has been built with - assertions enabled. - </para> - </listitem> - </varlistentry> - <varlistentry id="guc-ignore-system-indexes" xreflabel="ignore_system_indexes"> <term><varname>ignore_system_indexes</varname> (<type>boolean</type>) <indexterm> @@ -7355,10 +7353,6 @@ LOG: CleanUpLock: deleting: lock(0xb7acd844) id(24688,24696,0,0,0,1) <tbody> <row> - <entry><option>-A <replaceable>x</replaceable></option></entry> - <entry><literal>debug_assertions = <replaceable>x</replaceable></></entry> - </row> - <row> <entry><option>-B <replaceable>x</replaceable></option></entry> <entry><literal>shared_buffers = <replaceable>x</replaceable></></entry> </row> diff --git a/doc/src/sgml/ref/postgres-ref.sgml b/doc/src/sgml/ref/postgres-ref.sgml index 8e225e4c5d0..cdfdaa0b397 100644 --- a/doc/src/sgml/ref/postgres-ref.sgml +++ b/doc/src/sgml/ref/postgres-ref.sgml @@ -102,18 +102,6 @@ PostgreSQL documentation <variablelist> <varlistentry> - <term><option>-A 0|1</option></term> - <listitem> - <para> - Enables run-time assertion checks, which is a debugging aid to - detect programming mistakes. This option is only available if - assertions were enabled when <productname>PostgreSQL</> was - compiled. If so, the default is on. - </para> - </listitem> - </varlistentry> - - <varlistentry> <term><option>-B <replaceable class="parameter">nbuffers</replaceable></option></term> <listitem> <para> |