diff options
author | sasha@mysql.sashanet.com <> | 2000-12-07 10:14:28 -0700 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2000-12-07 10:14:28 -0700 |
commit | 7ccba68095ca8c86513e1234c4d0b6086851b11c (patch) | |
tree | 2fe182138b57b76e007f1481b3b85644cadfe3d5 /mysql-test/t | |
parent | 4d7d9c7f8f7892c531751388f3d700b2a9db4152 (diff) | |
download | mariadb-git-7ccba68095ca8c86513e1234c4d0b6086851b11c.tar.gz |
ok, here comes the push - prepare to resolve conflicts! And lets hope bk can gracefully handle all of my renames
Diffstat (limited to 'mysql-test/t')
-rw-r--r-- | mysql-test/t/mrg000001.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/mrg000001.test b/mysql-test/t/mrg000001.test index ded3ecc8898..1c533e91131 100644 --- a/mysql-test/t/mrg000001.test +++ b/mysql-test/t/mrg000001.test @@ -7,11 +7,11 @@ CREATE TABLE test2 (incr int not null, othr int not null, primary key(incr)); CREATE TABLE test3 (incr int not null, othr int not null, primary key(incr)) TYPE=MERGE UNION=(test1,test2); -@r/3.23/mrg000001.dummy.result SELECT * from test3; +@r/mrg000001.dummy.result SELECT * from test3; INSERT INTO test1 VALUES ( 1,10),( 3,53),( 5,21),( 7,12),( 9,17); INSERT INTO test2 VALUES ( 2,24),( 4,33),( 6,41),( 8,26),( 0,32); INSERT INTO test1 VALUES (11,20),(13,43),(15,11),(17,22),(19,37); INSERT INTO test2 VALUES (12,25),(14,31),(16,42),(18,27),(10,30); -@r/3.23/mrg000001.result SELECT * from test3 where incr in (1,2,3,4) order by othr; +@r/mrg000001.result SELECT * from test3 where incr in (1,2,3,4) order by othr; |