post merge weirdness

parent 512ad385
...@@ -882,16 +882,16 @@ replace into t1 values ('aaa', '-aaa'); ...@@ -882,16 +882,16 @@ replace into t1 values ('aaa', '-aaa');
replace into t1 values ('bbb', '-bbb'); replace into t1 values ('bbb', '-bbb');
replace into t1 values ('ccc', '-ccc'); replace into t1 values ('ccc', '-ccc');
select * from t1 order by 1,2; select * from t1 order by 1,2;
a b a b
a -a a -a
aa -aa aa -aa
aaa -aaa aaa -aaa
b -b b -b
bb -bb bb -bb
bbb -bbb bbb -bbb
c -c c -c
cc -cc cc -cc
ccc -ccc ccc -ccc
drop table t1; drop table t1;
End of 5.0 tests End of 5.0 tests
CREATE TABLE t1 (a VARCHAR(255) NOT NULL, CREATE TABLE t1 (a VARCHAR(255) NOT NULL,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment