diff options
author | Michael Widenius <monty@mariadb.org> | 2018-03-09 14:05:35 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2018-03-29 13:59:44 +0300 |
commit | a7abddeffa6a760ce948c2dfb007cdf3f1a369d5 (patch) | |
tree | 70eb743fa965a17380bbc0ac88ae79ca1075b896 /mysql-test/r/select_debug.result | |
parent | ab1941266c59a19703a74b5593cf3f508a5752d7 (diff) | |
download | mariadb-git-a7abddeffa6a760ce948c2dfb007cdf3f1a369d5.tar.gz |
Create 'main' test directory and move 't' and 'r' there
Diffstat (limited to 'mysql-test/r/select_debug.result')
-rw-r--r-- | mysql-test/r/select_debug.result | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/mysql-test/r/select_debug.result b/mysql-test/r/select_debug.result deleted file mode 100644 index 55882ad337a..00000000000 --- a/mysql-test/r/select_debug.result +++ /dev/null @@ -1,18 +0,0 @@ -# -# Bug #725050: print keyuse info when hash join is used -# -create table t1 (a int, b int); -insert into t1 values (2,2), (1,1); -create table t2 (a int); -insert into t2 values (2), (3); -set session join_cache_level=3; -set @@debug_dbug= 'd,opt'; -explain select t1.b from t1,t2 where t1.b=t2.a; -id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 ALL NULL NULL NULL NULL 2 Using where -1 SIMPLE t2 hash_ALL NULL #hash#$hj 5 test.t1.b 2 Using where; Using join buffer (flat, BNLH join) -select t1.b from t1,t2 where t1.b=t2.a; -b -2 -set session join_cache_level=default; -drop table t1,t2; |