List:Commits« Previous MessageNext Message »
From:ingo Date:June 29 2006 2:53pm
Subject:bk commit into 5.0 tree (ingo:1.2215)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of mydev. When mydev 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.2215 06/06/29 16:53:05 ingo@stripped +2 -0
  Merge mysql.com:/home/mydev/mysql-5.0--main
  into  mysql.com:/home/mydev/mysql-5.0-bug11824

  mysql-test/r/func_time.result
    1.58 06/06/29 16:52:58 ingo@stripped +0 -0
    Auto merged

  configure.in
    1.398 06/06/29 16:52:58 ingo@stripped +0 -0
    Auto merged

# 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:	ingo
# Host:	chilla.local
# Root:	/home/mydev/mysql-5.0-bug11824/RESYNC

--- 1.397/configure.in	2006-06-29 10:18:22 +02:00
+++ 1.398/configure.in	2006-06-29 16:52:58 +02:00
@@ -7,7 +7,7 @@ AC_INIT(sql/mysqld.cc)
 AC_CANONICAL_SYSTEM
 # The Docs Makefile.am parses this line!
 # remember to also change ndb version below and update version.c in ndb
-AM_INIT_AUTOMAKE(mysql, 5.0.23)
+AM_INIT_AUTOMAKE(mysql, 5.0.24)
 AM_CONFIG_HEADER(config.h)
 
 PROTOCOL_VERSION=10
@@ -19,7 +19,7 @@ SHARED_LIB_VERSION=$SHARED_LIB_MAJOR_VER
 # ndb version
 NDB_VERSION_MAJOR=5
 NDB_VERSION_MINOR=0
-NDB_VERSION_BUILD=23
+NDB_VERSION_BUILD=24
 NDB_VERSION_STATUS=""
 
 # Set all version vars based on $VERSION. How do we do this more elegant ?

--- 1.57/mysql-test/r/func_time.result	2006-06-27 19:28:24 +02:00
+++ 1.58/mysql-test/r/func_time.result	2006-06-29 16:52:58 +02:00
@@ -361,6 +361,12 @@ extract(SECOND FROM "1999-01-02 10:11:12
 select extract(MONTH FROM "2001-02-00");
 extract(MONTH FROM "2001-02-00")
 2
+SELECT DATE_SUB(str_to_date('9999-12-31 00:01:00','%Y-%m-%d %H:%i:%s'), INTERVAL 1 MINUTE);
+DATE_SUB(str_to_date('9999-12-31 00:01:00','%Y-%m-%d %H:%i:%s'), INTERVAL 1 MINUTE)
+9999-12-31 00:00:00
+SELECT DATE_ADD(str_to_date('9999-12-30 23:59:00','%Y-%m-%d %H:%i:%s'), INTERVAL 1 MINUTE);
+DATE_ADD(str_to_date('9999-12-30 23:59:00','%Y-%m-%d %H:%i:%s'), INTERVAL 1 MINUTE)
+9999-12-31 00:00:00
 SELECT EXTRACT(QUARTER FROM '2004-01-15') AS quarter;
 quarter
 1
Thread
bk commit into 5.0 tree (ingo:1.2215)ingo29 Jun