diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2016-04-09 17:03:48 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2016-04-09 17:03:48 +0200 |
commit | cd776fedba3e2902bc25ee206d6e6266e7eb9411 (patch) | |
tree | 95bf82d0e0522c6af708cd28639c82e004b5a264 /mysql-test/r/stat_tables_repl.result | |
parent | f884d233e6a5f68bab846a7bdbd041fc4415ad77 (diff) | |
parent | d516a2ae0cbd09d3b5b1667ec62b421330ab9902 (diff) | |
download | mariadb-git-10.2-connector-c-integ.tar.gz |
Merge branch '10.2' into 10.2-connector-c-integ10.2-connector-c-integ
Diffstat (limited to 'mysql-test/r/stat_tables_repl.result')
-rw-r--r-- | mysql-test/r/stat_tables_repl.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/stat_tables_repl.result b/mysql-test/r/stat_tables_repl.result index 132e5f7beae..43c9fa554c9 100644 --- a/mysql-test/r/stat_tables_repl.result +++ b/mysql-test/r/stat_tables_repl.result @@ -11,6 +11,8 @@ Table Op Msg_type Msg_text test.t1 analyze status Engine-independent statistics collected test.t1 analyze status OK DROP TABLE t1; +connection slave; +connection master; CREATE TABLE t1 ( a int, b int, INDEX idx1(b) ) ENGINE=MyISAM; INSERT INTO t1 VALUES (2,20), (1,20), (3,30); ANALYZE TABLE t1; @@ -18,6 +20,8 @@ Table Op Msg_type Msg_text test.t1 analyze status Engine-independent statistics collected test.t1 analyze status OK DROP INDEX idx1 ON t1; +connection slave; +connection master; DROP TABLE t1; CREATE TABLE t1 ( a int, b int, INDEX idx1(b) ) ENGINE=MyISAM; INSERT INTO t1 VALUES (2,20), (1,20), (3,30); @@ -26,6 +30,8 @@ Table Op Msg_type Msg_text test.t1 analyze status Engine-independent statistics collected test.t1 analyze status OK ALTER TABLE t1 DROP COLUMN b; +connection slave; +connection master; DROP TABLE t1; CREATE TABLE t1 ( a int, b int, INDEX idx1(b) ) ENGINE=MyISAM; INSERT INTO t1 VALUES (2,20), (1,20), (3,30); @@ -34,6 +40,8 @@ Table Op Msg_type Msg_text test.t1 analyze status Engine-independent statistics collected test.t1 analyze status OK ALTER TABLE t1 RENAME to s; +connection slave; +connection master; DROP TABLE s; CREATE TABLE t1 ( a int, b int, INDEX idx1(b) ) ENGINE=MyISAM; INSERT INTO t1 VALUES (2,20), (1,20), (3,30); @@ -42,5 +50,7 @@ Table Op Msg_type Msg_text test.t1 analyze status Engine-independent statistics collected test.t1 analyze status OK ALTER TABLE t1 CHANGE COLUMN b c int ; +connection slave; +connection master; DROP TABLE t1; include/rpl_end.inc |