List:Commits« Previous MessageNext Message »
From:msvensson Date:October 24 2006 3:54pm
Subject:bk commit into 5.0 tree (msvensson:1.2331)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of msvensson. When msvensson 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@stripped, 2006-10-24 17:54:45+02:00, msvensson@neptunus.(none) +6 -0
  Fix spelling errors in test files

  mysql-test/r/mysqldump-max.result@stripped, 2006-10-24 17:54:43+02:00, msvensson@neptunus.(none) +1 -18
    Update test result after fix of spelling error

  mysql-test/r/rpl_trigger.result@stripped, 2006-10-24 17:54:43+02:00, msvensson@neptunus.(none) +0 -2
    Update test result after fix of spelling error

  mysql-test/r/type_newdecimal.result@stripped, 2006-10-24 17:54:43+02:00, msvensson@neptunus.(none) +0 -2
    Update test result after fix of spelling error

  mysql-test/t/mysqldump-max.test@stripped, 2006-10-24 17:54:43+02:00, msvensson@neptunus.(none) +3 -8
    Fix spelling error "disable_warnings"
    Write shorter "drop table..."

  mysql-test/t/rpl_trigger.test@stripped, 2006-10-24 17:54:43+02:00, msvensson@neptunus.(none) +1 -1
    Fix spelling error, there is no --ignore_warnings

  mysql-test/t/type_newdecimal.test@stripped, 2006-10-24 17:54:43+02:00, msvensson@neptunus.(none) +2 -2
    Fix spelling error

# 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:	msvensson
# Host:	neptunus.(none)
# Root:	/home/msvensson/mysql/mysql-5.0-maint

--- 1.41/mysql-test/r/type_newdecimal.result	2006-10-24 17:54:50 +02:00
+++ 1.42/mysql-test/r/type_newdecimal.result	2006-10-24 17:54:50 +02:00
@@ -978,8 +978,6 @@
 ) ENGINE=MyISAM DEFAULT CHARSET=latin1
 drop table t1;
 drop procedure if exists wg2;
-Warnings:
-Note	1305	PROCEDURE wg2 does not exist
 create procedure wg2()
 begin
 declare v int default 1;

--- 1.38/mysql-test/t/type_newdecimal.test	2006-10-24 17:54:50 +02:00
+++ 1.39/mysql-test/t/type_newdecimal.test	2006-10-24 17:54:50 +02:00
@@ -1000,9 +1000,9 @@
 #
 # Bug 12938 (arithmetic loop's zero)
 #
---disable-warnings
+--disable_warnings
 drop procedure if exists wg2;
---enable-warnings
+--enable_warnings
 delimiter //;
 create procedure wg2()
 begin

--- 1.9/mysql-test/r/rpl_trigger.result	2006-10-24 17:54:50 +02:00
+++ 1.10/mysql-test/r/rpl_trigger.result	2006-10-24 17:54:50 +02:00
@@ -71,8 +71,6 @@
 1
 create table t1 (a datetime,b  datetime, c datetime);
 drop function if exists bug12480;
-Warnings:
-Note	1305	FUNCTION bug12480 does not exist
 create function bug12480() returns datetime
 begin
 set @a=get_lock("bug12480",2);

--- 1.8/mysql-test/t/rpl_trigger.test	2006-10-24 17:54:50 +02:00
+++ 1.9/mysql-test/t/rpl_trigger.test	2006-10-24 17:54:50 +02:00
@@ -62,7 +62,7 @@
 connection default;
 
 create table t1 (a datetime,b  datetime, c datetime);
---ignore_warnings
+--disable_warnings
 drop function if exists bug12480;
 --enable_warnings
 

--- 1.4/mysql-test/r/mysqldump-max.result	2006-10-24 17:54:50 +02:00
+++ 1.5/mysql-test/r/mysqldump-max.result	2006-10-24 17:54:50 +02:00
@@ -1,21 +1,4 @@
-drop table if exists t1;
-Warnings:
-Note	1051	Unknown table 't1'
-drop table if exists t2;
-Warnings:
-Note	1051	Unknown table 't2'
-drop table if exists t3;
-Warnings:
-Note	1051	Unknown table 't3'
-drop table if exists t4;
-Warnings:
-Note	1051	Unknown table 't4'
-drop table if exists t5;
-Warnings:
-Note	1051	Unknown table 't5'
-drop table if exists t6;
-Warnings:
-Note	1051	Unknown table 't6'
+drop table if exists t1, t2, t3, t4, t5, t6;
 create table t1 (id int(8), name varchar(32));
 create table t2 (id int(8), name varchar(32)) ENGINE="MyISAM";
 create table t3 (id int(8), name varchar(32)) ENGINE="MEMORY";

--- 1.1/mysql-test/t/mysqldump-max.test	2006-10-24 17:54:50 +02:00
+++ 1.2/mysql-test/t/mysqldump-max.test	2006-10-24 17:54:50 +02:00
@@ -3,14 +3,9 @@
 --source include/have_innodb.inc
 --source include/have_archive.inc
 
---disable-warnings
-drop table if exists t1; 
-drop table if exists t2; 
-drop table if exists t3; 
-drop table if exists t4; 
-drop table if exists t5; 
-drop table if exists t6; 
---enable-warnings
+--disable_warnings
+drop table if exists t1, t2, t3, t4, t5, t6;
+--enable_warnings
 
 create table t1 (id int(8), name varchar(32));
 create table t2 (id int(8), name varchar(32)) ENGINE="MyISAM";
Thread
bk commit into 5.0 tree (msvensson:1.2331)msvensson24 Oct