remove task tracker test from follower schedule

pull/3850/head
Sait Talha Nisanci 2020-05-19 16:37:02 +03:00
parent 155380fb77
commit d053630be6
3 changed files with 0 additions and 50 deletions

View File

@ -1,27 +0,0 @@
\c - - - :master_port
-- do some setup
CREATE TABLE tab(a int, b int);
SELECT create_distributed_table('tab', 'a');
create_distributed_table
---------------------------------------------------------------------
(1 row)
INSERT INTO tab (a, b) VALUES (1, 1);
INSERT INTO tab (a, b) VALUES (1, 2);
\c - - - :follower_master_port
RESET citus.task_executor_type;
SELECT * FROM tab;
a | b
---------------------------------------------------------------------
1 | 1
1 | 2
(2 rows)
SET citus.task_executor_type TO 'task-tracker';
SELECT * FROM tab;
ERROR: task tracker queries are not allowed while citus.use_secondary_nodes is 'always'
HINT: try setting citus.task_executor_type TO 'adaptive'
-- clean up
\c - - - :master_port
DROP TABLE tab;

View File

@ -2,7 +2,6 @@ test: multi_follower_sanity_check
test: multi_follower_select_statements
test: multi_follower_dml
test: multi_follower_configure_followers
test: multi_follower_task_tracker
# test that no tests leaked intermediate results. This should always be last
test: ensure_no_intermediate_data_leak

View File

@ -1,22 +0,0 @@
\c - - - :master_port
-- do some setup
CREATE TABLE tab(a int, b int);
SELECT create_distributed_table('tab', 'a');
INSERT INTO tab (a, b) VALUES (1, 1);
INSERT INTO tab (a, b) VALUES (1, 2);
\c - - - :follower_master_port
RESET citus.task_executor_type;
SELECT * FROM tab;
SET citus.task_executor_type TO 'task-tracker';
SELECT * FROM tab;
-- clean up
\c - - - :master_port
DROP TABLE tab;