diff options
Diffstat (limited to 'mysql-test/t/sel000031.test')
-rw-r--r-- | mysql-test/t/sel000031.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/sel000031.test b/mysql-test/t/sel000031.test index b1591ef3486..29bafbb3040 100644 --- a/mysql-test/t/sel000031.test +++ b/mysql-test/t/sel000031.test @@ -16,5 +16,5 @@ val int(10) not null); insert into t1 values (1),(2),(4); insert into t2 values (1,1),(2,1),(3,1),(4,2); -@r/sel000031.result select one.id, elt(two.val,'one','two') from t1 one, t2 two where two.id=one.id order by one.id; +select one.id, elt(two.val,'one','two') from t1 one, t2 two where two.id=one.id order by one.id; drop table t1,t2; |