Commit 5bdf6945 authored by Heikki Linnakangas's avatar Heikki Linnakangas

Fix typo in test comment.

parent 1f32136a
...@@ -292,7 +292,7 @@ SELECT s.stxkind, d.stxdndistinct ...@@ -292,7 +292,7 @@ SELECT s.stxkind, d.stxdndistinct
{d,f,m} | {"3, 4": 2550, "3, 6": 800, "4, 6": 1632, "3, 4, 6": 5000} {d,f,m} | {"3, 4": 2550, "3, 6": 800, "4, 6": 1632, "3, 4, 6": 5000}
(1 row) (1 row)
-- correct esimates -- correct estimates
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b'); SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b');
estimated | actual estimated | actual
-----------+-------- -----------+--------
......
...@@ -201,7 +201,7 @@ SELECT s.stxkind, d.stxdndistinct ...@@ -201,7 +201,7 @@ SELECT s.stxkind, d.stxdndistinct
WHERE s.stxrelid = 'ndistinct'::regclass WHERE s.stxrelid = 'ndistinct'::regclass
AND d.stxoid = s.oid; AND d.stxoid = s.oid;
-- correct esimates -- correct estimates
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b'); SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b');
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, c'); SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, c');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment