From: holyfoot Date: December 19 2005 10:21am Subject: bk commit into 4.1 tree (holyfoot:1.2464) BUG#15429 List-Archive: http://lists.mysql.com/commits/241 X-Bug: 15429 Message-Id: <200512191021.jBJALmZ2007388@localhost.localdomain> Below is the list of changes that have just been committed into a local 4.1 repository of hf. When hf 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.2464 05/12/19 14:21:42 holyfoot@deer.(none) +1 -0 bug #15429 (Test 'func_math' not prepared for 'classic' build) mysql-test/t/func_math.test 1.19 05/12/19 14:20:47 holyfoot@stripped +2 -0 warnings disabled on CREATE TABLE INNODB # 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: holyfoot # Host: deer.(none) # Root: /home/hf/work/mysql-4.1.15429 --- 1.18/mysql-test/t/func_math.test Tue Oct 18 05:00:35 2005 +++ 1.19/mysql-test/t/func_math.test Mon Dec 19 14:20:47 2005 @@ -91,7 +91,9 @@ # # InnoDB is required to reproduce the fault, but it is okay if we default to # MyISAM when testing. +--disable_warnings create table t1 (a varchar(90), ts datetime not null, index (a)) engine=innodb default charset=utf8; +--enable_warnings insert into t1 values ('http://www.foo.com/', now()); select a from t1 where a='http://www.foo.com/' order by abs(timediff(ts, 0)); drop table t1;