diff options
author | Igor Babaev <igor@askmonty.org> | 2019-02-03 22:26:39 -0800 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2019-02-03 22:26:39 -0800 |
commit | cfd2646c3152bbefe11e381c00b701a49cf5c4ef (patch) | |
tree | ed982828dff13de0d20c5b43ec0b1cb736a211c7 /mysql-test/main/delete_use_source.result | |
parent | 37deed3f37561f264f65e162146bbc2ad35fb1a2 (diff) | |
download | mariadb-git-cfd2646c3152bbefe11e381c00b701a49cf5c4ef.tar.gz |
Fixed the results after the merge of 10.4 into bb-10.4-mdev16188.
Diffstat (limited to 'mysql-test/main/delete_use_source.result')
-rw-r--r-- | mysql-test/main/delete_use_source.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/main/delete_use_source.result b/mysql-test/main/delete_use_source.result index a9a6df88077..0ce010eb415 100644 --- a/mysql-test/main/delete_use_source.result +++ b/mysql-test/main/delete_use_source.result @@ -48,7 +48,7 @@ rollback; start transaction; explain delete from v1 where (select count(*) from t1 b where b.c1=v1.c1) = 500 limit 1; id select_type table type possible_keys key key_len ref rows Extra -1 PRIMARY t1 range c1 c1 4 NULL 600 Using where +1 PRIMARY t1 range c1 c1 4 NULL 502 Using where 2 DEPENDENT SUBQUERY b ref c1 c1 4 test.t1.c1 167 Using index delete from v1 where (select count(*) from t1 b where b.c1=v1.c1) = 500 limit 1; affected rows: 1 |