summaryrefslogtreecommitdiff
path: root/mysql-test/suite/maria/maria3.result
diff options
context:
space:
mode:
authorVarun Gupta <varunraiko1803@gmail.com>2018-05-31 15:51:59 +0530
committerVarun Gupta <varun.gupta@mariadb.com>2018-12-09 09:22:00 +0530
commit93c360e3a53dbfe843bc4b769e73cbe9248cd5b3 (patch)
treea619c5ced37b0156487a9107d304fbfd7590001a /mysql-test/suite/maria/maria3.result
parenta25ce5ab4b38f0557abba8c5eb71b0839dc1ec4b (diff)
downloadmariadb-git-93c360e3a53dbfe843bc4b769e73cbe9248cd5b3.tar.gz
MDEV-15253: Default optimizer setting changes for MariaDB 10.4
use_stat_tables= PREFERABLY optimizer_use_condition_selectivity= 4
Diffstat (limited to 'mysql-test/suite/maria/maria3.result')
-rw-r--r--mysql-test/suite/maria/maria3.result2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/suite/maria/maria3.result b/mysql-test/suite/maria/maria3.result
index 1fd49df00e1..ba8b64f9514 100644
--- a/mysql-test/suite/maria/maria3.result
+++ b/mysql-test/suite/maria/maria3.result
@@ -209,11 +209,13 @@ create table t2 like t1;
insert into t2 select * from t1;
analyze table t2;
Table Op Msg_type Msg_text
+test.t2 analyze status Engine-independent statistics collected
test.t2 analyze status Table is already up to date
delete from t2;
insert into t2 select * from t1;
analyze table t2;
Table Op Msg_type Msg_text
+test.t2 analyze status Engine-independent statistics collected
test.t2 analyze status Table is already up to date
drop table t1,t2;
create table t1 (a bigint auto_increment, primary key(a), b char(255), c varchar(20000));