diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2014-03-28 00:32:53 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2014-03-28 00:32:53 +0400 |
commit | 92e49bb066da7cb5a38c2d3390176afdc5e67592 (patch) | |
tree | 264a8ce5c05ac36c7e70f0ef36fc486ef67a0662 /mysql-test/r/stat_tables_rbr.result | |
parent | 42263a2b0a16211f260e721a3087a1b14b09bbd9 (diff) | |
download | mariadb-git-92e49bb066da7cb5a38c2d3390176afdc5e67592.tar.gz |
MDEV-4360: ANALYZE shows "Table is already up to date" while updating stats
- Show a line with "Engine-independent statistics collected" when ANALYZE command
caused EITS statistics to be recollected.
Diffstat (limited to 'mysql-test/r/stat_tables_rbr.result')
-rw-r--r-- | mysql-test/r/stat_tables_rbr.result | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/stat_tables_rbr.result b/mysql-test/r/stat_tables_rbr.result index 0c941bcb248..119801bf7d4 100644 --- a/mysql-test/r/stat_tables_rbr.result +++ b/mysql-test/r/stat_tables_rbr.result @@ -5,6 +5,7 @@ SET GLOBAL use_stat_tables = PREFERABLY; CREATE TABLE t1 (i INT) ENGINE=InnoDB; ANALYZE TABLE t1; Table Op Msg_type Msg_text +test.t1 analyze status Engine-independent statistics collected test.t1 analyze status OK DROP TABLE t1; SET GLOBAL use_stat_tables = DEFAULT; @@ -12,6 +13,7 @@ SET use_stat_tables = PREFERABLY; CREATE TABLE t1 ( a INT ) ENGINE=MyISAM PARTITION BY HASH(a) PARTITIONS 2; ALTER TABLE t1 ANALYZE PARTITION p1; Table Op Msg_type Msg_text +test.t1 analyze status Engine-independent statistics collected test.t1 analyze status OK SHOW BINLOG EVENTS; Log_name Pos Event_type Server_id End_log_pos Info |