summaryrefslogtreecommitdiff
path: root/mysql-test/r/myisam-big.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/myisam-big.result')
-rw-r--r--mysql-test/r/myisam-big.result6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/myisam-big.result b/mysql-test/r/myisam-big.result
index 95a6e91d766..fd0bcb1224b 100644
--- a/mysql-test/r/myisam-big.result
+++ b/mysql-test/r/myisam-big.result
@@ -34,7 +34,13 @@ insert into t1 select * from t1;
select count(*) from t1;
count(*)
131072
+connect con2,localhost,root,,;
+connection con2;
alter table t1 add index (id), add index(sometext), add index(sometext,id);
alter table t1 disable keys;
alter table t1 enable keys;
+connection default;
+connection con2;
+disconnect con2;
+connection default;
drop table t1,t2;