summaryrefslogtreecommitdiff
path: root/mysql-test/r/analyze.result
diff options
context:
space:
mode:
authorOleksandr Byelkin <sanja@mariadb.com>2016-03-17 15:12:57 +0100
committerOleksandr Byelkin <sanja@mariadb.com>2016-03-21 11:48:04 +0100
commite8af217e16837000b8a3809e9fa48a5e75088cd0 (patch)
tree6077f93d8334b027c46f0967ad7ffa73eae24a89 /mysql-test/r/analyze.result
parent94768542115289272996f6450b7d3cafa75dcead (diff)
downloadmariadb-git-e8af217e16837000b8a3809e9fa48a5e75088cd0.tar.gz
MDEV-9590: Always print "Engine-independent statistic" warnings and might be filtering columns unintentionally from engines
Do not issue the warning in case we are not going to collect the statistics.
Diffstat (limited to 'mysql-test/r/analyze.result')
-rw-r--r--mysql-test/r/analyze.result2
1 files changed, 0 insertions, 2 deletions
diff --git a/mysql-test/r/analyze.result b/mysql-test/r/analyze.result
index 5a05d1c5da8..9dff94ab08c 100644
--- a/mysql-test/r/analyze.result
+++ b/mysql-test/r/analyze.result
@@ -34,11 +34,9 @@ create table t1 (a mediumtext, fulltext key key1(a)) charset utf8 collate utf8_g
insert into t1 values ('hello');
analyze table t1;
Table Op Msg_type Msg_text
-test.t1 analyze Warning Engine-independent statistics are not collected for column 'a'
test.t1 analyze status OK
analyze table t1;
Table Op Msg_type Msg_text
-test.t1 analyze Warning Engine-independent statistics are not collected for column 'a'
test.t1 analyze status Table is already up to date
drop table t1;
CREATE TABLE t1 (a int);