summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorNeil Conway <neilc@samurai.com>2007-04-12 22:34:45 +0000
committerNeil Conway <neilc@samurai.com>2007-04-12 22:34:45 +0000
commit6df6d8e36104003c7a4e4724278809011a871bd2 (patch)
tree32ebafdfda8d86b9a02a140056eb190ab4c889b8 /doc/src
parentc0e42e9325949a692d0803331e60ae87d2f76684 (diff)
Fixes for RESET SESSION patch, per Alvaro. Fix a typo in the RESET
ref page (sorry, my fault!), and simplify the coding of ResetTempTableNamespace().
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/ref/reset.sgml8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/reset.sgml b/doc/src/sgml/ref/reset.sgml
index e94ef0b8d57..e98f7ff56c6 100644
--- a/doc/src/sgml/ref/reset.sgml
+++ b/doc/src/sgml/ref/reset.sgml
@@ -1,5 +1,5 @@
<!--
-$PostgreSQL: pgsql/doc/src/sgml/ref/reset.sgml,v 1.33 2007/04/12 06:53:46 neilc Exp $
+$PostgreSQL: pgsql/doc/src/sgml/ref/reset.sgml,v 1.34 2007/04/12 22:34:45 neilc Exp $
PostgreSQL documentation
-->
@@ -42,7 +42,7 @@ SET <replaceable class="parameter">configuration_parameter</replaceable> TO DEFA
<para>
The default value is defined as the value that the parameter would
- have had, if no <command>SET</> ever been issued for it in the
+ have had, if no <command>SET</> had ever been issued for it in the
current session. The actual source of this value might be a
compiled-in default, the configuration file, command-line options,
or per-database or per-user default settings. See <xref
@@ -112,7 +112,7 @@ SET <replaceable class="parameter">configuration_parameter</replaceable> TO DEFA
Releases all temporary resources associated with the current
session. This has the same effect as executing the following
command sequence:
-<synopsis>
+<programlisting>
SET SESSION AUTHORIZATION DEFAULT;
RESET ALL;
DEALLOCATE ALL;
@@ -120,7 +120,7 @@ CLOSE ALL;
UNLISTEN *;
RESET PLANS;
RESET TEMP;
-</synopsis>
+</programlisting>
</para>
</listitem>
</varlistentry>