#At file:///home/os136802/mysql/develop/repo/falcon-trans2/
2881 Olav Sandstaa 2008-10-24 [merge]
Merging.....
modified:
mysql-test/r/binlog_format_basic.result
mysql-test/t/binlog_format_basic.test
sql/mysqld.cc
storage/falcon/StorageVersion.h
=== modified file 'mysql-test/r/binlog_format_basic.result'
=== modified file 'mysql-test/r/binlog_format_basic.result'
--- a/mysql-test/r/binlog_format_basic.result 2008-04-10 13:14:28 +0000
+++ b/mysql-test/r/binlog_format_basic.result 2008-10-22 14:08:10 +0000
@@ -1,3 +1,6 @@
+SELECT @@GLOBAL.binlog_format;
+@@GLOBAL.binlog_format
+MIXED
'#---------------------BS_STVARS_002_01----------------------#'
SELECT COUNT(@@GLOBAL.binlog_format);
COUNT(@@GLOBAL.binlog_format)
=== modified file 'mysql-test/t/binlog_format_basic.test'
--- a/mysql-test/t/binlog_format_basic.test 2008-04-10 13:14:28 +0000
+++ b/mysql-test/t/binlog_format_basic.test 2008-10-22 14:00:45 +0000
@@ -22,6 +22,13 @@
# #
###############################################################################
+###################################################################
+# BUG#39812: Make statement replication default for 5.1 (to match 5.0)
+# We just verify that the default binlog_format is STATEMENT in 5.1.
+# In 6.0, it should be MIXED.
+###################################################################
+SELECT @@GLOBAL.binlog_format;
+
--echo '#---------------------BS_STVARS_002_01----------------------#'
####################################################################
# Displaying default value #
=== modified file 'sql/mysqld.cc'
--- a/sql/mysqld.cc 2008-10-20 12:25:30 +0000
+++ b/sql/mysqld.cc 2008-10-23 11:57:08 +0000
@@ -4027,12 +4027,12 @@
}
else
{
- global_system_variables.binlog_format= BINLOG_FORMAT_STMT;
+ global_system_variables.binlog_format= BINLOG_FORMAT_MIXED;
}
}
else
if (opt_binlog_format_id == BINLOG_FORMAT_UNSPEC)
- global_system_variables.binlog_format= BINLOG_FORMAT_STMT;
+ global_system_variables.binlog_format= BINLOG_FORMAT_MIXED;
else
{
DBUG_ASSERT(global_system_variables.binlog_format != BINLOG_FORMAT_UNSPEC);
=== modified file 'storage/falcon/StorageVersion.h'
--- a/storage/falcon/StorageVersion.h 2008-10-22 13:30:44 +0000
+++ b/storage/falcon/StorageVersion.h 2008-10-24 15:22:59 +0000
@@ -14,5 +14,5 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
-#define FALCON_VERSION "T1.2-9"
-#define FALCON_DATE "22 October, 2008"
+#define FALCON_VERSION "T1.3-0"
+#define FALCON_DATE "24 October, 2008"
| Thread |
|---|
| • bzr commit into mysql-6.0-falcon-team branch (olav:2881) | Olav Sandstaa | 24 Oct |