Skip to content
Snippets Groups Projects
Commit 53264c7b authored by Peter Eisentraut's avatar Peter Eisentraut
Browse files

doc: Fix commas and improve spacing

parent e93b6298
No related branches found
No related tags found
No related merge requests found
...@@ -1253,8 +1253,8 @@ ROLLUP ( <replaceable>e1</>, <replaceable>e2</>, <replaceable>e3</>, ... ) ...@@ -1253,8 +1253,8 @@ ROLLUP ( <replaceable>e1</>, <replaceable>e2</>, <replaceable>e3</>, ... )
GROUPING SETS ( GROUPING SETS (
( <replaceable>e1</>, <replaceable>e2</>, <replaceable>e3</>, ... ), ( <replaceable>e1</>, <replaceable>e2</>, <replaceable>e3</>, ... ),
... ...
( <replaceable>e1</>, <replaceable>e2</> ) ( <replaceable>e1</>, <replaceable>e2</> ),
( <replaceable>e1</> ) ( <replaceable>e1</> ),
( ) ( )
) )
</programlisting> </programlisting>
...@@ -1282,7 +1282,7 @@ GROUPING SETS ( ...@@ -1282,7 +1282,7 @@ GROUPING SETS (
( b, c ), ( b, c ),
( b ), ( b ),
( c ), ( c ),
( ), ( )
) )
</programlisting> </programlisting>
</para> </para>
...@@ -1299,9 +1299,9 @@ CUBE ( (a,b), (c,d) ) ...@@ -1299,9 +1299,9 @@ CUBE ( (a,b), (c,d) )
is equivalent to is equivalent to
<programlisting> <programlisting>
GROUPING SETS ( GROUPING SETS (
( a, b, c, d ) ( a, b, c, d ),
( a, b ) ( a, b ),
( c, d ) ( c, d ),
( ) ( )
) )
</programlisting> </programlisting>
...@@ -1312,9 +1312,9 @@ ROLLUP ( a, (b,c), d ) ...@@ -1312,9 +1312,9 @@ ROLLUP ( a, (b,c), d )
is equivalent to is equivalent to
<programlisting> <programlisting>
GROUPING SETS ( GROUPING SETS (
( a, b, c, d ) ( a, b, c, d ),
( a, b, c ) ( a, b, c ),
( a ) ( a ),
( ) ( )
) )
</programlisting> </programlisting>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment