Skip to content

Commit

Permalink
fix spider tests for --ps in 10.4
Browse files Browse the repository at this point in the history
see also 068246c
  • Loading branch information
vuvova committed Jun 19, 2021
1 parent a4f4859 commit 690ae1d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@ USE auto_test_remote;

--connection child2_1
--disable_query_log
--disable_ps_protocol
echo CHILD2_1_CREATE_TABLES;
eval $CHILD2_1_CREATE_TABLES;
--enable_ps_protocol
--enable_query_log
TRUNCATE TABLE mysql.general_log;

Expand Down Expand Up @@ -62,8 +64,10 @@ TRUNCATE TABLE mysql.general_log;
SELECT a.val, a.akey FROM tbl_a a, tbl_b b WHERE a.akey = b.akey AND b.bkey = 5;

--connection child2_1
--disable_ps_protocol
eval $CHILD2_1_SELECT_ARGUMENT1;
eval $CHILD2_1_SELECT_TABLES;
--enable_ps_protocol

--echo
--echo deinit
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ USE auto_test_remote;
--connection child2_1
--disable_query_log
echo CHILD2_1_CREATE_TABLES;
--disable_ps_protocol
eval $CHILD2_1_CREATE_TABLES;
--enable_ps_protocol
--enable_query_log
TRUNCATE TABLE mysql.general_log;

Expand Down Expand Up @@ -62,8 +64,10 @@ TRUNCATE TABLE mysql.general_log;
SELECT a.val, a.akey FROM tbl_a a, tbl_b b WHERE a.akey = b.akey AND b.bkey = 5;

--connection child2_1
--disable_ps_protocol
eval $CHILD2_1_SELECT_ARGUMENT1;
eval $CHILD2_1_SELECT_TABLES;
--enable_ps_protocol

--echo
--echo deinit
Expand Down

0 comments on commit 690ae1d

Please sign in to comment.