Hi!
>>>>> "Guilhem" == Guilhem Bichot <guilhem@stripped> writes:
Guilhem> Hello,
Guilhem> as part of the 5.1->5.1-maria merge which you are doing, t/myisam.test
Guilhem> was modified:
Guilhem> === modified file 'mysql-test/t/myisam.test'
Guilhem> --- mysql-test/t/myisam.test 2008-04-28 16:24:05 +0000
Guilhem> +++ mysql-test/t/myisam.test 2008-09-29 12:40:41 +0000
Guilhem> @@ -1169,6 +1169,21 @@
Guilhem> DROP TABLE t1, t2;
Guilhem> +
Guilhem> +#
Guilhem> +# Bug#37310: 'on update CURRENT_TIMESTAMP' option crashes the table
Guilhem> +#
Guilhem> +CREATE TABLE t1 (a INT) ENGINE=MyISAM CHECKSUM=1 ROW_FORMAT=DYNAMIC;
Guilhem> +INSERT INTO t1 VALUES (0);
Guilhem> +UPDATE t1 SET a=1;
Guilhem> +SELECT a FROM t1;
Guilhem> +CHECK TABLE t1;
Guilhem> +INSERT INTO t1 VALUES (0), (5), (4), (2);
Guilhem> +UPDATE t1 SET a=2;
Guilhem> +SELECT a FROM t1;
Guilhem> +CHECK TABLE t1;
Guilhem> +DROP TABLE t1;
Guilhem> +
Guilhem> --echo End of 5.0 tests
Guilhem> This needs to be propagated to maria.test (which is more or less a clone
Guilhem> of myisam.test, so needs to receive the same modifications), could you
Guilhem> please do it, and tell me when it's done? This will ensure that the fix
Guilhem> for BUG#37310 has been propagated to Maria and works fine there.
I have now propageted all recent tests from mysql.test to maria.test.
Will today try to fix the myisam changes in the code two.
This is a bit complicted by the fact that bzr just destroyed my
mysql-maria bzr tree :(
Regards,
Monty