diff options
author | unknown <mskold@mysql.com> | 2005-11-18 12:20:22 +0100 |
---|---|---|
committer | unknown <mskold@mysql.com> | 2005-11-18 12:20:22 +0100 |
commit | bb8bee51e4a6340bc14a825abc62c656152ee56c (patch) | |
tree | 75ec2817a7fd6ffa7b7c62f0ad2a78ebc690ec72 | |
parent | dadce564f8366d07f9d42c2e41025a5e318d0df3 (diff) | |
download | mariadb-git-bb8bee51e4a6340bc14a825abc62c656152ee56c.tar.gz |
Disabled --ps-protocol during autodiscover test
-rw-r--r-- | mysql-test/t/ndb_alter_table.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/ndb_alter_table.test b/mysql-test/t/ndb_alter_table.test index 3cd363fb6e8..d89b81859e7 100644 --- a/mysql-test/t/ndb_alter_table.test +++ b/mysql-test/t/ndb_alter_table.test @@ -138,6 +138,7 @@ INSERT INTO t1 VALUES (1,2,0),(18,19,4),(20,21,0); select c from t1 order by c; drop table t1; +--disable_ps_protocol create table t1 ( a int primary key, b varchar(10), c varchar(10), index (b) ) engine=ndb; insert into t1 values (1,'one','one'), (2,'two','two'), (3,'three','three'); @@ -153,6 +154,7 @@ select * from t1 where b = 'two'; select * from t1 where b = 'two'; connection server1; drop table t1; +--enable_ps_protocol #--disable_warnings #DROP TABLE IF EXISTS t2; |