Below is the list of changes that have just been committed into a local
4.1 repository of Sinisa. When Sinisa 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://www.mysql.com/doc/I/n/Installing_source_tree.html
ChangeSet
1.1707 04/01/16 20:05:08 Sinisa@stripped +2 -0
Two bug fixes
sql/sql_union.cc
1.97 04/01/16 20:05:03 Sinisa@stripped +2 -1
Fix for the unlock problem with a typo correction.
mysql-test/t/mysqldump.test
1.10 04/01/16 20:05:03 Sinisa@stripped +6 -6
Fixing a test to encompass latest Jani's patch to mysqldump.c
# 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: Sinisa
# Host: sinisa.nasamreza.org
# Root: /mnt/work/mysql-4.1
--- 1.96/sql/sql_union.cc Fri Dec 19 19:52:10 2003
+++ 1.97/sql/sql_union.cc Fri Jan 16 20:05:03 2004
@@ -145,8 +145,9 @@
for (;sl; sl= sl->next_select())
{
+ sl->options|= SELECT_NO_UNLOCK;
JOIN *join= new JOIN(thd_arg, sl->item_list,
- sl->options | thd_arg->options | SELECT_NO_UNLOCK,
+ sl->options | thd_arg->options,
tmp_result);
thd_arg->lex->current_select= sl;
offset_limit_cnt= sl->offset_limit;
--- 1.9/mysql-test/t/mysqldump.test Fri Dec 19 16:25:45 2003
+++ 1.10/mysql-test/t/mysqldump.test Fri Jan 16 20:05:03 2004
@@ -6,7 +6,7 @@
CREATE TABLE t1(a int);
INSERT INTO t1 VALUES (1), (2);
---exec $MYSQL_DUMP --skip-all --skip-comments -X test t1
+--exec $MYSQL_DUMP --disable-quote --skip-all --skip-comments -X test t1
DROP TABLE t1;
#
@@ -16,7 +16,7 @@
CREATE TABLE t1 (a decimal(240, 20));
INSERT INTO t1 VALUES ("1234567890123456789012345678901234567890"),
("0987654321098765432109876543210987654321");
---exec $MYSQL_DUMP --skip-comments test t1
+--exec $MYSQL_DUMP --disable-quote --skip-comments test t1
DROP TABLE t1;
#
@@ -28,12 +28,12 @@
# The following replaces is here because some systems replaces the above
# double with '-inf' and others with MAX_DOUBLE
--replace_result (-1.79769313486232e+308) (RES) (NULL) (RES)
---exec $MYSQL_DUMP --skip-comments test t1
+--exec $MYSQL_DUMP --disable-quote --skip-comments test t1
DROP TABLE t1;
CREATE TABLE t1(a int, b text, c varchar(3));
INSERT INTO t1 VALUES (1, "test", "tes"), (2, "TEST", "TES");
---exec $MYSQL_DUMP --skip-all --skip-comments -X test t1
+--exec $MYSQL_DUMP --disable-quote --skip-all --skip-comments -X test t1
DROP TABLE t1;
#
@@ -42,7 +42,7 @@
CREATE TABLE t1 (`a"b"` char(2));
INSERT INTO t1 VALUES ("1\""), ("\"2");
---exec $MYSQL_DUMP --skip-all --skip-comments -X test t1
+--exec $MYSQL_DUMP --disable-quote --skip-all --skip-comments -X test t1
DROP TABLE t1;
#
@@ -51,5 +51,5 @@
CREATE TABLE t1 (a VARCHAR(255)) DEFAULT CHARSET koi8r;
INSERT INTO t1 VALUES (_koi8r x'C1C2C3C4C5');
---exec $MYSQL_DUMP --skip-comments test t1
+--exec $MYSQL_DUMP --disable-quote --skip-comments test t1
DROP TABLE t1;
| Thread |
|---|
| • bk commit into 4.1 tree (Sinisa:1.1707) | sinisa | 16 Jan |