mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 03:17:20 +02:00
Merge branch '10.2' into 10.3
# Conflicts: # mysql-test/suite/galera/r/MW-388.result # mysql-test/suite/galera/t/MW-388.test # mysql-test/suite/innodb/r/truncate_inject.result # mysql-test/suite/innodb/t/truncate_inject.test # mysql-test/suite/rpl/r/rpl_stop_slave.result # mysql-test/suite/rpl/t/rpl_stop_slave.test # sql/sp_head.cc # sql/sp_head.h # sql/sql_lex.cc # sql/sql_yacc.yy # storage/xtradb/buf/buf0dblwr.cc
This commit is contained in:
commit
e709eb9bf7
219 changed files with 841 additions and 524 deletions
|
|
@ -6,6 +6,7 @@ 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 @saved_dbug = @@SESSION.debug_dbug;
|
||||
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
|
||||
|
|
@ -16,3 +17,4 @@ b
|
|||
2
|
||||
set session join_cache_level=default;
|
||||
drop table t1,t2;
|
||||
SET debug_dbug= @saved_dbug;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue