Skip to content

Commit 39f6315

Browse files
MDEV-19866 follow-up
Cherry-picking the fix for MDEV-19866 changes the behavior of the Spider slightly. So, I modified a existing test to match the new behavior.
1 parent a466650 commit 39f6315

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

storage/spider/mysql-test/spider/bugfix/r/mdev_20100.result

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,16 +78,16 @@ a b c
7878
connection child2_1;
7979
SELECT argument FROM mysql.general_log WHERE argument LIKE '%select %';
8080
argument
81-
select `a`,`b`,`c` from `auto_test_remote`.`ta_r3` where (`b` = 'c')
81+
select t0.`a` `a`,t0.`b` `b`,t0.`c` `c` from `auto_test_remote`.`ta_r3` t0 where (t0.`b` = 'c')
8282
select `a`,`b`,`c` from `auto_test_remote`.`ta_r2`
8383
select `a`,`b`,`c` from `auto_test_remote`.`ta_r3`
84-
select `a`,`b`,`c` from `auto_test_remote`.`ta_r4` where (`b` = 'c')
84+
select t0.`a` `a`,t0.`b` `b`,t0.`c` `c` from `auto_test_remote`.`ta_r4` t0 where (t0.`b` = 'c')
8585
select `a`,`b`,`c` from `auto_test_remote`.`ta_r2`
8686
select `a`,`b`,`c` from `auto_test_remote`.`ta_r3`
87-
select `a`,`b`,`c` from `auto_test_remote`.`ta_r2` where (`b` = 'c')
87+
select t0.`a` `a`,t0.`b` `b`,t0.`c` `c` from `auto_test_remote`.`ta_r2` t0 where (t0.`b` = 'c')
8888
select `a`,`b`,`c` from `auto_test_remote`.`ta_r2`
8989
select `a`,`b`,`c` from `auto_test_remote`.`ta_r4`
90-
select `a`,`b`,`c` from `auto_test_remote`.`ta_r2` where (`b` = 'c')
90+
select t0.`a` `a`,t0.`b` `b`,t0.`c` `c` from `auto_test_remote`.`ta_r2` t0 where (t0.`b` = 'c')
9191
select `a`,`b`,`c` from `auto_test_remote`.`ta_r3`
9292
select `a`,`b`,`c` from `auto_test_remote`.`ta_r4`
9393
SELECT argument FROM mysql.general_log WHERE argument LIKE '%select %'

0 commit comments

Comments
 (0)