Update regression tests-5

Failure tests that rely on intermediate results
pull/3161/head
Onder Kalaci 2019-12-11 12:24:28 +01:00 committed by Jelte Fennema
parent 1e85938b46
commit 3818be45a6
2 changed files with 7 additions and 0 deletions

View File

@ -3,6 +3,9 @@ SET SEARCH_PATH=cte_failure;
SET citus.shard_count to 2;
SET citus.shard_replication_factor to 1;
SET citus.next_shard_id TO 16000000;
-- CTE inlining should not happen because
-- the tests rely on intermediate results
SET citus.enable_cte_inlining TO false;
SELECT pg_backend_pid() as pid \gset
CREATE TABLE users_table (user_id int, user_name text);
CREATE TABLE events_table(user_id int, event_id int, event_type int);

View File

@ -5,6 +5,10 @@ SET citus.shard_count to 2;
SET citus.shard_replication_factor to 1;
SET citus.next_shard_id TO 16000000;
-- CTE inlining should not happen because
-- the tests rely on intermediate results
SET citus.enable_cte_inlining TO false;
SELECT pg_backend_pid() as pid \gset
CREATE TABLE users_table (user_id int, user_name text);