summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2018-02-15 13:56:38 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2018-02-15 13:57:21 -0500
commit35c3dabc806b26c543bf434ea4a08707ba894239 (patch)
treec8bd95395d4694a3b92c674345df33afeb6028c3
parent457e9e88e357d60d2eed865ba7f52a274faf35f2 (diff)
Doc: fix minor bug in CREATE TABLE example.
One example in create_table.sgml claimed to be showing table constraint syntax, but it was really column constraint syntax due to the omission of a comma. This is both wrong and confusing, so fix it in all supported branches. Per report from neil@postgrescompare.com. Discussion: https://postgr.es/m/151871659877.1393.2431103178451978795@wrigleys.postgresql.org
-rw-r--r--doc/src/sgml/ref/create_table.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml
index 6c653bb4e66..cea588d399f 100644
--- a/doc/src/sgml/ref/create_table.sgml
+++ b/doc/src/sgml/ref/create_table.sgml
@@ -1175,7 +1175,7 @@ CREATE TABLE distributors (
<programlisting>
CREATE TABLE distributors (
did integer,
- name varchar(40)
+ name varchar(40),
CONSTRAINT con1 CHECK (did &gt; 100 AND name &lt;&gt; '')
);
</programlisting>