The following documentation comment has been logged on the website:
Page: https://www.postgresql.org/docs/0.0/static/sql-altertable.html
Description:
NOTHING records no information about the old row. (This is the default for
system tables.) In all cases,
change to:
NOTHING records no informatio
doc/src/sgml/queries.sgml
1272
1273 CUBE ( a, b, c )
1274
1275 is equivalent to
1276
1277 GROUPING SETS (
1278 ( a, b, c ),
1279 ( a, b),
1280 ( a,c ),
1281 ( a ),
1282 (b, c ),
1283 (b),
1284 ( c ),
1285 ( ),
1286 )
l