]> granicus.if.org Git - postgresql/commitdiff
Add missing semicolons in documentation examples
authorMagnus Hagander <magnus@hagander.net>
Sat, 27 Jan 2018 12:13:52 +0000 (13:13 +0100)
committerMagnus Hagander <magnus@hagander.net>
Sat, 27 Jan 2018 12:14:53 +0000 (13:14 +0100)
Author: Daniel Gustafsson <daniel@yesql.se>

doc/src/sgml/ddl.sgml

index 89805fb5adf3b408620788cf1c92bd2bb8ee9f7a..0bed5b9a479b1e5ee8079dd6bb6672cde4759722 100644 (file)
@@ -3080,14 +3080,14 @@ CREATE TABLE measurement (
 
 <programlisting>
 CREATE TABLE measurement_y2006m02 PARTITION OF measurement
-    FOR VALUES FROM ('2006-02-01') TO ('2006-03-01')
+    FOR VALUES FROM ('2006-02-01') TO ('2006-03-01');
 
 CREATE TABLE measurement_y2006m03 PARTITION OF measurement
-    FOR VALUES FROM ('2006-03-01') TO ('2006-04-01')
+    FOR VALUES FROM ('2006-03-01') TO ('2006-04-01');
 
 ...
 CREATE TABLE measurement_y2007m11 PARTITION OF measurement
-    FOR VALUES FROM ('2007-11-01') TO ('2007-12-01')
+    FOR VALUES FROM ('2007-11-01') TO ('2007-12-01');
 
 CREATE TABLE measurement_y2007m12 PARTITION OF measurement
     FOR VALUES FROM ('2007-12-01') TO ('2008-01-01')