diff options
Diffstat (limited to 'mysql-test/suite/innodb/t/tmpdir.test')
-rw-r--r-- | mysql-test/suite/innodb/t/tmpdir.test | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mysql-test/suite/innodb/t/tmpdir.test b/mysql-test/suite/innodb/t/tmpdir.test index abe455adda5..98517a97c7a 100644 --- a/mysql-test/suite/innodb/t/tmpdir.test +++ b/mysql-test/suite/innodb/t/tmpdir.test @@ -18,7 +18,6 @@ create table t1(a int primary key)engine=innodb; show session variables like 'innodb_tmpdir'; alter table t1 add column b int not null; set global innodb_tmpdir=NULL; ---echo # Connection con1 connect (con1,localhost,root); show session variables like 'innodb_tmpdir'; alter table t1 add key(b); @@ -56,7 +55,6 @@ insert into t1 values('text1', 'text2'); set @tmpdir = @@global.tmpdir; set global innodb_tmpdir = @tmpdir; show session variables like 'innodb_tmpdir'; ---echo # Connection con3 connect (con3,localhost,root); # Following alter using innodb_tmpdir as a path to create temporary files alter table t1 add fulltext(b); |