Skip to content
Permalink
Browse files
fix spider tests for --ps in 10.4
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.
@@ -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;

@@ -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
@@ -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;

@@ -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

0 comments on commit 690ae1d

Please sign in to comment.