Commit 613ea37e authored by Rich Prohaska's avatar Rich Prohaska

#4656 fix the test for the update order by bug with tokudb refs[t:4645]

git-svn-id: file:///svn/mysql/tests/mysql-test@41347 c7de825b-a66e-492c-adef-691d508d4ae1
parent e95bea9d
set storage_engine='tokudb';
CREATE TABLE `t2` ( CREATE TABLE `t2` (
`c1` int(11) NOT NULL, `c1` int(11) NOT NULL,
`c2` int(10) unsigned DEFAULT NULL, `c2` int(10) unsigned DEFAULT NULL,
...@@ -21,7 +22,7 @@ INSERT INTO t2 (c1,c2,c3) VALUES ...@@ -21,7 +22,7 @@ INSERT INTO t2 (c1,c2,c3) VALUES
(-2147483648, 0, 13), (-2147483648, 0, 13),
(2147483647, 4294967295, 14), (2147483647, 4294967295, 14),
(0, 2147483648, 15), (0, 2147483648, 15),
(2147483647, 2147483647, 16); (2147483647, 2147483647, 16);
SELECT * FROM t2; SELECT * FROM t2;
c1 c2 c3 c1 c2 c3
-12 12 12 -12 12 12
......
set storage_engine='tokudb';
CREATE TABLE `t2` ( CREATE TABLE `t2` (
`c1` int(11) NOT NULL, `c1` int(11) NOT NULL,
`c2` int(10) unsigned DEFAULT NULL, `c2` int(10) unsigned DEFAULT 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