~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-proposed

« back to all changes in this revision

Viewing changes to storage/myisammrg/mysql-test/storage_engine/tbl_opt_union.rdiff

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2013-12-22 10:27:05 UTC
  • Revision ID: package-import@ubuntu.com-20131222102705-mndw7s12mz0szrcn
Tags: upstream-5.5.32
Import upstream version 5.5.32

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--- tbl_opt_union.result        2013-01-22 22:05:05.246633000 +0400
 
2
+++ tbl_opt_union.reject        2013-01-23 02:51:05.375430573 +0400
 
3
@@ -4,11 +4,11 @@
 
4
 Table  Create Table
 
5
 t1     CREATE TABLE `t1` (
 
6
   `a` int(11) DEFAULT NULL
 
7
-) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1 UNION=(`child1`)
 
8
+) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1 INSERT_METHOD=LAST UNION=(`child1`)
 
9
 ALTER TABLE t1 UNION = (child1,child2);
 
10
 SHOW CREATE TABLE t1;
 
11
 Table  Create Table
 
12
 t1     CREATE TABLE `t1` (
 
13
   `a` int(11) DEFAULT NULL
 
14
-) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1 UNION=(`child1`,`child2`)
 
15
+) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1 INSERT_METHOD=LAST UNION=(`child1`,`child2`)
 
16
 DROP TABLE t1, child1, child2;