diff options
author | Varun Gupta <varunraiko1803@gmail.com> | 2018-02-21 16:01:50 +0200 |
---|---|---|
committer | Varun Gupta <varunraiko1803@gmail.com> | 2018-02-21 16:01:50 +0200 |
commit | dbbaaff0fbce203e8c785179b1c559f82f869a69 (patch) | |
tree | 7c2f7b683ecf5de051b53cf2bbc97560a4e63c9e /mysql-test/r/func_concat.result | |
parent | 5df9e8de638bcb0c0c877a56e01ae5c59062249a (diff) | |
download | mariadb-git-10.3-MDEV-7773.tar.gz |
MDEV-15253:Default optimizer setting changes for MariaDB 10.310.3-MDEV-7773
Milestone 1: raising join_cache_level to 4 from 2
Diffstat (limited to 'mysql-test/r/func_concat.result')
-rw-r--r-- | mysql-test/r/func_concat.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/func_concat.result b/mysql-test/r/func_concat.result index 9ab6f74653e..e74857ca9cd 100644 --- a/mysql-test/r/func_concat.result +++ b/mysql-test/r/func_concat.result @@ -118,7 +118,7 @@ EXPLAIN SELECT CONCAT('gui_', t2.a), t1.d FROM t2 LEFT JOIN t1 ON t1.a = CONCAT('gui_', t2.a) AND t1.b = 'a' AND t1.c = 'b'; id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t2 index NULL PRIMARY 102 NULL 3 Using index -1 SIMPLE t1 eq_ref PRIMARY,a PRIMARY 318 func,const,const 1 Using where +1 SIMPLE t1 hash_ALL PRIMARY,a #hash#PRIMARY 318 func,const,const 3 Using where; Using join buffer (flat, BNLH join) DROP TABLE t1, t2; # # Bug #50096: CONCAT_WS inside procedure returning wrong data |