Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 56067de

Browse files
committed
Add missing semicolons in documentation examples
Author: Daniel Gustafsson <daniel@yesql.se>
1 parent 51fc1b0 commit 56067de

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
@@ -3080,14 +3080,14 @@ CREATE TABLE measurement (
30803080

30813081
<programlisting>
30823082
CREATE TABLE measurement_y2006m02 PARTITION OF measurement
3083-
FOR VALUES FROM ('2006-02-01') TO ('2006-03-01')
3083+
FOR VALUES FROM ('2006-02-01') TO ('2006-03-01');
30843084

30853085
CREATE TABLE measurement_y2006m03 PARTITION OF measurement
3086-
FOR VALUES FROM ('2006-03-01') TO ('2006-04-01')
3086+
FOR VALUES FROM ('2006-03-01') TO ('2006-04-01');
30873087

30883088
...
30893089
CREATE TABLE measurement_y2007m11 PARTITION OF measurement
3090-
FOR VALUES FROM ('2007-11-01') TO ('2007-12-01')
3090+
FOR VALUES FROM ('2007-11-01') TO ('2007-12-01');
30913091

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

0 commit comments

Comments
 (0)