Skip to content

Commit ba8c2df

Browse files
committed
Add missing semicolons in documentation examples
Author: Daniel Gustafsson <daniel@yesql.se>
1 parent fb8697b commit ba8c2df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/src/sgml/ddl.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3097,14 +3097,14 @@ CREATE TABLE measurement (
30973097

30983098
<programlisting>
30993099
CREATE TABLE measurement_y2006m02 PARTITION OF measurement
3100-
FOR VALUES FROM ('2006-02-01') TO ('2006-03-01')
3100+
FOR VALUES FROM ('2006-02-01') TO ('2006-03-01');
31013101

31023102
CREATE TABLE measurement_y2006m03 PARTITION OF measurement
3103-
FOR VALUES FROM ('2006-03-01') TO ('2006-04-01')
3103+
FOR VALUES FROM ('2006-03-01') TO ('2006-04-01');
31043104

31053105
...
31063106
CREATE TABLE measurement_y2007m11 PARTITION OF measurement
3107-
FOR VALUES FROM ('2007-11-01') TO ('2007-12-01')
3107+
FOR VALUES FROM ('2007-11-01') TO ('2007-12-01');
31083108

31093109
CREATE TABLE measurement_y2007m12 PARTITION OF measurement
31103110
FOR VALUES FROM ('2007-12-01') TO ('2008-01-01')

0 commit comments

Comments
 (0)