diff options
author | unknown <jan@hundin.mysql.fi> | 2005-09-29 13:50:27 +0300 |
---|---|---|
committer | unknown <jan@hundin.mysql.fi> | 2005-09-29 13:50:27 +0300 |
commit | 76b83baf8ed24187181482a2a786bc446199a6fd (patch) | |
tree | 0280737f70253a07f5b1ba44f57758bc690d375f /mysql-test/r/innodb.result | |
parent | 0b0a19cb8101a62a2ec1a409f8bb193b81adb7ad (diff) | |
download | mariadb-git-76b83baf8ed24187181482a2a786bc446199a6fd.tar.gz |
Fix incorrectly merged changeset, these may not be before a first 5.0 test
i.e. range test.
Diffstat (limited to 'mysql-test/r/innodb.result')
-rw-r--r-- | mysql-test/r/innodb.result | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/mysql-test/r/innodb.result b/mysql-test/r/innodb.result index ef1163b17c9..8579d94595f 100644 --- a/mysql-test/r/innodb.result +++ b/mysql-test/r/innodb.result @@ -1739,34 +1739,6 @@ select min(b) from t1 where a='8'; min(b) 6 drop table t1; -create table test_checksum(a int not null) engine=innodb DEFAULT CHARSET=latin1; -insert into test_checksum values (1),(2); -set autocommit=0; -checksum table test_checksum; -Table Checksum -test.test_checksum 1531596814 -insert into test_checksum values(3); -checksum table test_checksum; -Table Checksum -test.test_checksum 1531596814 -commit; -checksum table test_checksum; -Table Checksum -test.test_checksum 2050879373 -commit; -drop table test_checksum; -create table test_checksum(a int not null) engine=innodb DEFAULT CHARSET=latin1; -insert into test_checksum values (1),(2); -set autocommit=1; -checksum table test_checksum; -Table Checksum -test.test_checksum 1531596814 -set autocommit=1; -insert into test_checksum values(3); -checksum table test_checksum; -Table Checksum -test.test_checksum 2050879373 -drop table test_checksum; create table t1 (x bigint unsigned not null primary key) engine=innodb; insert into t1(x) values (0xfffffffffffffff0),(0xfffffffffffffff1); select * from t1; |