diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-02-27 21:07:03 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-02-27 21:07:03 +0000 |
commit | 80b7955d60f25d318458a5c047c0d7972b6eb107 (patch) | |
tree | c40aaa576859aede11e3bde60ab5213309c538ec | |
parent | 84ccfdf0879150e1349f6933a348976e5d423499 (diff) | |
download | postgresql-80b7955d60f25d318458a5c047c0d7972b6eb107.tar.gz postgresql-80b7955d60f25d318458a5c047c0d7972b6eb107.zip |
Correct bogus syntax in SET example.
-rw-r--r-- | doc/src/sgml/ref/set.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/set.sgml b/doc/src/sgml/ref/set.sgml index 7e00fced1ef..87d4d6f09e1 100644 --- a/doc/src/sgml/ref/set.sgml +++ b/doc/src/sgml/ref/set.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/set.sgml,v 1.30 2000/02/19 08:14:54 thomas Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/set.sgml,v 1.31 2000/02/27 21:07:03 tgl Exp $ Postgres documentation --> @@ -870,7 +870,7 @@ SET DATESTYLE TO 'ISO'; Enable GEQO for queries with 4 or more tables: <programlisting> -SET GEQO ON=4; +SET GEQO = 'ON=4'; </programlisting> Set GEQO to default: |