summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael P2012-04-10 08:52:33 +0000
committerMichael P2012-04-10 08:52:33 +0000
commitfd2cc85fd25250b4713b78f6fe7b4b6cc2000cc0 (patch)
treeabfd2997e50a006a27f86309d40125bebb401125
parentdebcaf7d7a6dc6eaf120cc11573709d81d3ec3ca (diff)
Correct the regression test bitmapops
An INSERT SELECT that requires a lot of runtime is re-allowed. This query runs slowly as it performs on 70,000 rows from a distributed table to another but test passes.
-rw-r--r--src/test/regress/sql/bitmapops.sql7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/test/regress/sql/bitmapops.sql b/src/test/regress/sql/bitmapops.sql
index 2402d47e3f..498f4721b5 100644
--- a/src/test/regress/sql/bitmapops.sql
+++ b/src/test/regress/sql/bitmapops.sql
@@ -14,10 +14,9 @@
CREATE TABLE bmscantest (a int, b int, t text);
--- PGXCTODO: This query runs slowly
--- INSERT INTO bmscantest
--- SELECT (r%53), (r%59), 'foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo'
--- FROM generate_series(1,70000) r;
+INSERT INTO bmscantest
+ SELECT (r%53), (r%59), 'foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo'
+ FROM generate_series(1,70000) r;
CREATE INDEX i_bmtest_a ON bmscantest(a);
CREATE INDEX i_bmtest_b ON bmscantest(b);