mirror of https://github.com/citusdata/citus.git
Update regression tests-5
Failure tests that rely on intermediate resultspull/3161/head
parent
1e85938b46
commit
3818be45a6
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue