List:Commits« Previous MessageNext Message »
From:Sven Sandberg Date:August 7 2008 10:51pm
Subject:bzr commit into mysql-6.0 branch (sven:2698) Bug#37051
View as plain text  
#At file:///home/sven/bzr/merge/6.0-rpl_from_5.1-rpl/

 2698 Sven Sandberg	2008-08-07 [merge]
      merged 5.1-rpl -> 6.0-rpl
      the following conflicts were manually merged:
      Contents conflict in mysql-test/include/query_prealloc_size_basic.inc
      Text conflict in mysql-test/mysql-test-run.pl
      Contents conflict in mysql-test/r/backup.result
      Text conflict in mysql-test/r/multi_update.result
      Contents conflict in mysql-test/r/outfile.result
      Contents conflict in mysql-test/r/query_prealloc_size_basic_32.result
      Contents conflict in mysql-test/r/query_prealloc_size_basic_64.result
      Text conflict in mysql-test/suite/parts/inc/partition_layout_check2.inc
      Contents conflict in mysql-test/suite/rpl/r/rpl_load_table_from_master.result
      Contents conflict in mysql-test/suite/rpl/t/rpl_load_from_master.test
      Contents conflict in mysql-test/suite/rpl/t/rpl_load_table_from_master.test
      Contents conflict in mysql-test/t/backup.test
removed:
  mysql-test/suite/rpl/t/rpl_load_from_master-slave.opt
modified:
  client/mysqltest.c
  configure.in
  mysql-test/mysql-test-run.pl
  mysql-test/suite/ndb/t/disabled.def
  mysql-test/suite/parts/inc/partition_layout_check2.inc
  mysql-test/suite/rpl_ndb/t/disabled.def

=== modified file 'client/mysqltest.c'
--- a/client/mysqltest.c	2008-08-05 11:20:20 +0000
+++ b/client/mysqltest.c	2008-08-07 20:51:09 +0000
@@ -277,8 +277,8 @@ enum enum_commands {
   Q_REPLACE_REGEX, Q_REMOVE_FILE, Q_FILE_EXIST,
   Q_WRITE_FILE, Q_COPY_FILE, Q_PERL, Q_DIE, Q_EXIT, Q_SKIP,
   Q_CHMOD_FILE, Q_APPEND_FILE, Q_CAT_FILE, Q_DIFF_FILES,
-  Q_SEND_QUIT, Q_CHANGE_USER, Q_MKDIR, Q_RMDIR, Q_LIST_FILES,
-  Q_LIST_FILES_WRITE_FILE, Q_LIST_FILES_APPEND_FILE,
+  Q_SEND_QUIT, Q_CHANGE_USER, Q_MKDIR, Q_RMDIR,
+  Q_LIST_FILES, Q_LIST_FILES_WRITE_FILE, Q_LIST_FILES_APPEND_FILE,
   Q_SEND_SHUTDOWN, Q_SHUTDOWN_SERVER,
 
   Q_UNKNOWN,			       /* Unknown command.   */

=== modified file 'configure.in'
--- a/configure.in	2008-08-05 11:20:20 +0000
+++ b/configure.in	2008-08-07 20:51:09 +0000
@@ -643,19 +643,19 @@ fi
 AC_MSG_CHECKING(whether features provided by the user community should be included.)
 AC_ARG_ENABLE(community-features,
     AC_HELP_STRING(
-        [--enable-community-features], 
-        [Enable additional features provided by the user community.]),
+        [--disable-community-features], 
+        [Disable additional features provided by the user community.]),
     [ ENABLE_COMMUNITY_FEATURES=$enableval ],
-    [ ENABLE_COMMUNITY_FEATURES=no ]
+    [ ENABLE_COMMUNITY_FEATURES=yes ]
     )
 
 if test "$ENABLE_COMMUNITY_FEATURES" = "yes"
 then
   AC_DEFINE([COMMUNITY_SERVER], [1],
             [Whether features provided by the user community should be included])
-  AC_MSG_RESULT([yes, community server])
+  AC_MSG_RESULT([yes])
 else
-  AC_MSG_RESULT([no, enterprise server])
+  AC_MSG_RESULT([no])
 fi
 
 AC_ARG_WITH(server-suffix,

=== modified file 'mysql-test/mysql-test-run.pl'
--- a/mysql-test/mysql-test-run.pl	2008-08-05 11:20:20 +0000
+++ b/mysql-test/mysql-test-run.pl	2008-08-07 20:51:09 +0000
@@ -149,14 +149,15 @@ my $opt_build_thread= $ENV{'MTR_BUILD_TH
 
 my $opt_record;
 my $opt_report_features;
+
 our $opt_check_testcases= 1;
 my $opt_mark_progress;
 
 my $opt_sleep;
 
-my $opt_testcase_timeout=    15; # 15 minutes
-my $opt_suite_timeout   =   360; # 6 hours
-my $opt_shutdown_timeout=    10; # 10 seconds
+my $opt_testcase_timeout=     15; # 15 minutes
+my $opt_suite_timeout   =    360; # 6 hours
+my $opt_shutdown_timeout=     10; # 10 seconds
 my $opt_start_timeout   =    180; # 180 seconds
 
 my $opt_start;
@@ -1694,7 +1695,8 @@ sub environment_setup {
   # ----------------------------------------------------
   my $file_mysql_fix_privilege_tables=
     mtr_file_exists("$basedir/scripts/mysql_fix_privilege_tables.sql",
-		    "$basedir/share/mysql_fix_privilege_tables.sql");
+		    "$basedir/share/mysql_fix_privilege_tables.sql",
+		    "$basedir/share/mysql/mysql_fix_privilege_tables.sql");
   $ENV{'MYSQL_FIX_PRIVILEGE_TABLES'}=  $file_mysql_fix_privilege_tables;
 
   # ----------------------------------------------------
@@ -2818,6 +2820,7 @@ sub run_testcase ($) {
 	if (defined $value){
 	  mtr_verbose("Restoring $option to $value");
 	  $ENV{$option}= $value;
+
 	} else {
 	  mtr_verbose("Removing $option");
 	  delete($ENV{$option});

=== modified file 'mysql-test/suite/ndb/t/disabled.def'
--- a/mysql-test/suite/ndb/t/disabled.def	2008-04-27 01:02:09 +0000
+++ b/mysql-test/suite/ndb/t/disabled.def	2008-08-07 20:51:09 +0000
@@ -11,6 +11,7 @@
 ##############################################################################
 
 ndb_partition_error2	 : HF is not sure if the test can work as internded on all the
platforms
+ndb_index_ordered        : Bug#38370 The test ndb.ndb_index_ordered fails with the
community features on
 
 # the below testcase have been reworked to avoid the bug, test contains comment, keep bug
open
 #ndb_binlog_ddl_multi     : BUG#18976 2006-04-10 kent    CRBR: multiple binlog, second
binlog may miss schema log events

=== modified file 'mysql-test/suite/parts/inc/partition_layout_check2.inc'
--- a/mysql-test/suite/parts/inc/partition_layout_check2.inc	2008-08-04 14:30:50 +0000
+++ b/mysql-test/suite/parts/inc/partition_layout_check2.inc	2008-08-07 20:51:09 +0000
@@ -34,7 +34,7 @@ let $show_file= $MYSQLD_DATADIR/test/tmp
 
 if ($do_file_tests)
 {
-# List the files belonging to the table t1
+  # List the files belonging to the table t1
   let $ls_file= $MYSQLD_DATADIR/test/tmp2;
   --list_files_write_file $ls_file $MYSQLD_DATADIR/test t1*
   --chmod 0644 $ls_file

=== removed file 'mysql-test/suite/rpl/t/rpl_load_from_master-slave.opt'
--- a/mysql-test/suite/rpl/t/rpl_load_from_master-slave.opt	2007-06-27 12:28:02 +0000
+++ b/mysql-test/suite/rpl/t/rpl_load_from_master-slave.opt	1970-01-01 00:00:00 +0000
@@ -1 +0,0 @@
---replicate-wild-do-table=mysqltest.%

=== modified file 'mysql-test/suite/rpl_ndb/t/disabled.def'
--- a/mysql-test/suite/rpl_ndb/t/disabled.def	2008-07-22 14:16:22 +0000
+++ b/mysql-test/suite/rpl_ndb/t/disabled.def	2008-08-07 20:51:09 +0000
@@ -12,6 +12,7 @@
 
 rpl_ndb_circular         : Bug#33849 COMMIT event missing in cluster circular
replication.
 rpl_ndb_circular_simplex : Bug#33849 COMMIT event missing in cluster circular
replication.
+rpl_row_basic_7ndb       : Bug#38369 rpl_ndb.rpl_row_basic_7ndb fails
 rpl_ndb_circular_2ch	 : Bug#33849 COMMIT event missing in cluster circular replication.
 rpl_ndb_innodb2ndb       : Bug#34725 2008-02-26 hakank Currently failing.
 rpl_ndb_extraCol	: Bug #22045 2008-03-22 Got error 839 'Illegal null attribute' from
NDBCLUSTER when 'Replace Into'

Thread
bzr commit into mysql-6.0 branch (sven:2698) Bug#37051Sven Sandberg7 Aug