summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNayuta Yanagisawa <nayuta.yanagisawa@hey.com>2021-08-10 11:32:31 +0000
committerNayuta Yanagisawa <nayuta.yanagisawa@hey.com>2021-10-18 13:19:03 +0900
commit39f6315612149860ffdb92d433a6bace2096b9c1 (patch)
treee4165df0178bdc9374cbd257ded007733af71fd3
parenta46665090b96f5598b534d31524af830dfc225b0 (diff)
downloadmariadb-git-39f6315612149860ffdb92d433a6bace2096b9c1.tar.gz
MDEV-19866 follow-upbb-10.3-mdev-26333
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.
-rw-r--r--storage/spider/mysql-test/spider/bugfix/r/mdev_20100.result8
1 files changed, 4 insertions, 4 deletions
diff --git a/storage/spider/mysql-test/spider/bugfix/r/mdev_20100.result b/storage/spider/mysql-test/spider/bugfix/r/mdev_20100.result
index fc4fb02d72f..9d2297b4daf 100644
--- a/storage/spider/mysql-test/spider/bugfix/r/mdev_20100.result
+++ b/storage/spider/mysql-test/spider/bugfix/r/mdev_20100.result
@@ -78,16 +78,16 @@ a b c
connection child2_1;
SELECT argument FROM mysql.general_log WHERE argument LIKE '%select %';
argument
-select `a`,`b`,`c` from `auto_test_remote`.`ta_r3` where (`b` = 'c')
+select t0.`a` `a`,t0.`b` `b`,t0.`c` `c` from `auto_test_remote`.`ta_r3` t0 where (t0.`b` = 'c')
select `a`,`b`,`c` from `auto_test_remote`.`ta_r2`
select `a`,`b`,`c` from `auto_test_remote`.`ta_r3`
-select `a`,`b`,`c` from `auto_test_remote`.`ta_r4` where (`b` = 'c')
+select t0.`a` `a`,t0.`b` `b`,t0.`c` `c` from `auto_test_remote`.`ta_r4` t0 where (t0.`b` = 'c')
select `a`,`b`,`c` from `auto_test_remote`.`ta_r2`
select `a`,`b`,`c` from `auto_test_remote`.`ta_r3`
-select `a`,`b`,`c` from `auto_test_remote`.`ta_r2` where (`b` = 'c')
+select t0.`a` `a`,t0.`b` `b`,t0.`c` `c` from `auto_test_remote`.`ta_r2` t0 where (t0.`b` = 'c')
select `a`,`b`,`c` from `auto_test_remote`.`ta_r2`
select `a`,`b`,`c` from `auto_test_remote`.`ta_r4`
-select `a`,`b`,`c` from `auto_test_remote`.`ta_r2` where (`b` = 'c')
+select t0.`a` `a`,t0.`b` `b`,t0.`c` `c` from `auto_test_remote`.`ta_r2` t0 where (t0.`b` = 'c')
select `a`,`b`,`c` from `auto_test_remote`.`ta_r3`
select `a`,`b`,`c` from `auto_test_remote`.`ta_r4`
SELECT argument FROM mysql.general_log WHERE argument LIKE '%select %'