diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-08-20 12:04:32 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-08-20 12:06:08 +0300 |
commit | 02587dcddc2cb5d9f7a17cb0281d168f5a0d6297 (patch) | |
tree | a3b3ae34ffaed5519c7a9ec7a1624a45b2b4d1fe /doc/src | |
parent | c4762886539b06da682045e19ba73dcee3789638 (diff) | |
download | postgresql-02587dcddc2cb5d9f7a17cb0281d168f5a0d6297.tar.gz postgresql-02587dcddc2cb5d9f7a17cb0281d168f5a0d6297.zip |
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.sgml | 2 |
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, |