diff options
Diffstat (limited to 'mysql-test/t/sel000033.test')
-rw-r--r-- | mysql-test/t/sel000033.test | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/mysql-test/t/sel000033.test b/mysql-test/t/sel000033.test index 62ac90e8b87..58c103979d0 100644 --- a/mysql-test/t/sel000033.test +++ b/mysql-test/t/sel000033.test @@ -9,9 +9,10 @@ # ----------- # test for a bug with in() and unique key -drop table if exists t; -create table t (id int(10) primary key); -insert into t values (1),(2),(3),(4),(5),(6),(7),(8),(9); +drop table if exists t1; +create table t1 (id int(10) primary key); +insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9); -@r/sel000033.result select id from t where id in (2,5,9) ; -@r/sel000033.result select id from t where id=2 or id=5 or id=9 ; +@r/sel000033.result select id from t1 where id in (2,5,9) ; +@r/sel000033.result select id from t1 where id=2 or id=5 or id=9 ; +drop table t1; |