Below is the list of changes that have just been committed into a local
5.0 repository of jan. When jan does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet
1.2018 05/09/29 13:50:27 jan@stripped +2 -0
Fix incorrectly merged changeset, these may not be before a first 5.0 test
i.e. range test.
mysql-test/t/innodb.test
1.114 05/09/29 13:50:16 jan@stripped +0 -40
Fix incorrectly merged changeset, these may not be before a first 5.0 test
i.e. range test.
mysql-test/r/innodb.result
1.140 05/09/29 13:50:15 jan@stripped +0 -28
Fix incorrectly merged changeset, these may not be before a first 5.0 test
i.e. range test.
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: jan
# Host: hundin.mysql.fi
# Root: /home/jan/mysql-5.0
--- 1.139/mysql-test/r/innodb.result 2005-09-29 13:11:18 +03:00
+++ 1.140/mysql-test/r/innodb.result 2005-09-29 13:50:15 +03:00
@@ -1739,34 +1739,6 @@
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;
--- 1.113/mysql-test/t/innodb.test 2005-09-29 13:11:18 +03:00
+++ 1.114/mysql-test/t/innodb.test 2005-09-29 13:50:16 +03:00
@@ -1269,46 +1269,6 @@
select min(b) from t1 where a='8';
drop table t1;
-#
-# Test that checksum table uses a consistent read Bug #12669
-#
-connect (a,localhost,root,,);
-connect (b,localhost,root,,);
-connection a;
-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;
-connection b;
-insert into test_checksum values(3);
-connection a;
-#
-# Here checksum should not see insert
-#
-checksum table test_checksum;
-connection a;
-commit;
-checksum table test_checksum;
-commit;
-drop table test_checksum;
-#
-# autocommit = 1
-#
-connection a;
-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;
-connection b;
-set autocommit=1;
-insert into test_checksum values(3);
-connection a;
-#
-# Here checksum sees insert
-#
-checksum table test_checksum;
-drop table test_checksum;
-
# End of 4.1 tests
#
| Thread |
|---|
| • bk commit into 5.0 tree (jan:1.2018) | Jan Lindstrom | 29 Sep |