summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorHeikki Linnakangas2014-08-20 09:04:32 +0000
committerHeikki Linnakangas2014-08-20 09:06:08 +0000
commit02587dcddc2cb5d9f7a17cb0281d168f5a0d6297 (patch)
treea3b3ae34ffaed5519c7a9ec7a1624a45b2b4d1fe /doc/src
parentc4762886539b06da682045e19ba73dcee3789638 (diff)
Use comma+space as the separator in the default search_path.
While the space is optional, it seems nicer to be consistent with what you get if you do "SET search_path=...". SET always normalizes the separator to be comma+space. Christoph Martin
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/ddl.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml
index ca8a45e9c63..0fcd9f87062 100644
--- a/doc/src/sgml/ddl.sgml
+++ b/doc/src/sgml/ddl.sgml
@@ -1746,7 +1746,7 @@ SHOW search_path;
<screen>
search_path
--------------
- "$user",public
+ "$user", public
</screen>
The first element specifies that a schema with the same name as
the current user is to be searched. If no such schema exists,