diff options
-rw-r--r-- | doc/src/sgml/ref/create_statistics.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/create_statistics.sgml b/doc/src/sgml/ref/create_statistics.sgml index ae1d8024a4e..ec23a154d68 100644 --- a/doc/src/sgml/ref/create_statistics.sgml +++ b/doc/src/sgml/ref/create_statistics.sgml @@ -178,7 +178,7 @@ CREATE TABLE t2 ( INSERT INTO t2 SELECT mod(i,100), mod(i,100) FROM generate_series(1,1000000) s(i); -CREATE STATISTICS s2 (mcv) ON (a, b) FROM t2; +CREATE STATISTICS s2 (mcv) ON a, b FROM t2; ANALYZE t2; |