summaryrefslogtreecommitdiff
path: root/mysql-test/r/analyze.result
diff options
context:
space:
mode:
authorOleksandr Byelkin <sanja@mariadb.com>2015-12-16 19:33:41 +0100
committerOleksandr Byelkin <sanja@mariadb.com>2016-01-22 18:07:11 +0100
commit825f51d1aab51d363dc07ec9fe0829af33063883 (patch)
tree3e9da3522d9f532799207f23b3e4cc0e1a41a04c /mysql-test/r/analyze.result
parent45920d3d4a8ee28af8ca64b281db95ae3876bb70 (diff)
downloadmariadb-git-825f51d1aab51d363dc07ec9fe0829af33063883.tar.gz
MDEV-9118 ANALYZE TABLE for Engine independent status fetchs blob/text columns without use
Do not include BLOB fields by default.
Diffstat (limited to 'mysql-test/r/analyze.result')
-rw-r--r--mysql-test/r/analyze.result2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/analyze.result b/mysql-test/r/analyze.result
index 9dff94ab08c..5a05d1c5da8 100644
--- a/mysql-test/r/analyze.result
+++ b/mysql-test/r/analyze.result
@@ -34,9 +34,11 @@ 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);