List:Commits« Previous MessageNext Message »
From:He Zhenxing Date:September 2 2008 1:57pm
Subject:bzr commit into mysql-6.0 branch (hezx:2683)
View as plain text  
#At file:///media/sda3/work/mysql/bzrwork/merge/6.0-rpl/

 2683 He Zhenxing	2008-09-02
      Use MyISAM as the engine for all tables created in mtr_warnings.sql
modified:
  mysql-test/include/mtr_warnings.sql

per-file messages:
  mysql-test/include/mtr_warnings.sql
    Use MyISAM as the engine for all tables
=== modified file 'mysql-test/include/mtr_warnings.sql'
--- a/mysql-test/include/mtr_warnings.sql	2008-08-25 12:44:40 +0000
+++ b/mysql-test/include/mtr_warnings.sql	2008-09-02 13:56:58 +0000
@@ -8,7 +8,7 @@ use mtr||
 --
 CREATE TABLE suspicious_patterns (
   pattern VARCHAR(255)
-)||
+) ENGINE=MyISAM||
 
 
 --
@@ -46,7 +46,7 @@ INSERT INTO suspicious_patterns VALUES
 --
 CREATE TABLE test_supressions (
   pattern VARCHAR(255)
-)||
+) ENGINE=MyISAM||
 
 
 --
@@ -69,7 +69,7 @@ END
 --
 CREATE TABLE global_supressions (
   pattern VARCHAR(255)
-)||
+) ENGINE=MyISAM||
 
 
 -- Declare a trigger that makes sure
@@ -227,7 +227,7 @@ BEGIN
   CREATE TEMPORARY TABLE error_log (
     row INT AUTO_INCREMENT PRIMARY KEY,
     line mediumtext NULL
-  );
+  ) ENGINE=MyISAM;
 
   SELECT variable_value INTO @log_error
     FROM information_schema.global_variables
@@ -255,7 +255,7 @@ BEGIN
       WHERE line REGEXP "^CURRENT_TEST:";
   DELETE FROM error_log WHERE row < @max_row;
 
-  CREATE TEMPORARY TABLE suspect_lines AS
+  CREATE TEMPORARY TABLE suspect_lines ENGINE=MyISAM AS
    SELECT DISTINCT el.line, 0 as "supressed"
      FROM error_log el, suspicious_patterns ep
        WHERE el.line REGEXP ep.pattern;

Thread
bzr commit into mysql-6.0 branch (hezx:2683) He Zhenxing2 Sep