1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-31 03:21:24 +03:00

doc: Fix commas and improve spacing

This commit is contained in:
Peter Eisentraut 2015-11-16 18:59:55 -05:00
parent 34d4f49bb9
commit 75c8af902e

View File

@ -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 (
( b, c ), ( b, c ),
( b ), ( b ),
( c ), ( c ),
( ), ( )
) )
</programlisting> </programlisting>
</para> </para>
@ -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 )
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>