summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/rpl_not_null_myisam.result
diff options
context:
space:
mode:
authorAlfranio Correia <alfranio.correia@sun.com>2009-10-22 01:19:52 +0100
committerAlfranio Correia <alfranio.correia@sun.com>2009-10-22 01:19:52 +0100
commit925ac7f4eb3672b09b3414b257750345e80022b6 (patch)
treefcaeb644de19026943b5d9193be9ede350d9013c /mysql-test/suite/rpl/r/rpl_not_null_myisam.result
parent7e5cf52c3e0a52960a1f564bbb78c1ab42d1a0a1 (diff)
downloadmariadb-git-925ac7f4eb3672b09b3414b257750345e80022b6.tar.gz
BUG#48091 valgrind errors when slave has double not null and master has double null
Backporting BUG#43789 to mysql-5.1-bugteam Post-fix for BUG#43789.
Diffstat (limited to 'mysql-test/suite/rpl/r/rpl_not_null_myisam.result')
-rw-r--r--mysql-test/suite/rpl/r/rpl_not_null_myisam.result24
1 files changed, 12 insertions, 12 deletions
diff --git a/mysql-test/suite/rpl/r/rpl_not_null_myisam.result b/mysql-test/suite/rpl/r/rpl_not_null_myisam.result
index 57a015367bb..09611dc6480 100644
--- a/mysql-test/suite/rpl/r/rpl_not_null_myisam.result
+++ b/mysql-test/suite/rpl/r/rpl_not_null_myisam.result
@@ -48,24 +48,24 @@ TABLES t1 and t2 must be equal otherwise an error will be thrown.
Comparing tables master:test.t1 and slave:test.t1
Comparing tables master:test.t2 and slave:test.t2
TABLES t2 and t3 must be different.
-SELECT * FROM t3;
+SELECT * FROM t3 ORDER BY a;
a b
1 NULL
2 1111-11-11
3 NULL
-SELECT * FROM t3;
+SELECT * FROM t3 ORDER BY a;
a b c
1 NULL 500
2 1111-11-11 500
3 NULL 500
-SELECT * FROM t4;
+SELECT * FROM t4 ORDER BY a;
a b c
1 NULL 1
2 1111-11-11 2
3 NULL NULL
4 NULL 4
5 NULL NULL
-SELECT * FROM t4;
+SELECT * FROM t4 ORDER BY a;
a b
1 NULL
2 1111-11-11
@@ -100,14 +100,14 @@ INSERT INTO t1(a,c) VALUES (4, b'01');
INSERT INTO t1(a) VALUES (5);
************* SHOWING THE RESULT SETS WITH INSERTS *************
TABLES t1 and t2 must be different.
-SELECT a,b+0,c+0 FROM t1;
+SELECT a,b+0,c+0 FROM t1 ORDER BY a;
a b+0 c+0
1 NULL 1
2 0 1
3 NULL NULL
4 NULL 1
5 NULL NULL
-SELECT a,b+0,c+0 FROM t1;
+SELECT a,b+0,c+0 FROM t1 ORDER BY a;
a b+0 c+0
1 NULL 1
2 0 1
@@ -163,34 +163,34 @@ REPLACE INTO t3(a, b) VALUES (5, null);
REPLACE INTO t3(a, b) VALUES (3, null);
UPDATE t3 SET b = NULL where a = 4;
************* SHOWING THE RESULT SETS *************
-SELECT * FROM t1;
+SELECT * FROM t1 ORDER BY a;
a b
1 NULL
2 NULL
3 1
-SELECT * FROM t1;
+SELECT * FROM t1 ORDER BY a;
a b c
1 0 0
2 0 0
3 1 0
-SELECT * FROM t2;
+SELECT * FROM t2 ORDER BY a;
a b
1 NULL
2 NULL
3 1
-SELECT * FROM t2;
+SELECT * FROM t2 ORDER BY a;
a b c
1 0 NULL
2 0 NULL
3 1 NULL
-SELECT * FROM t3;
+SELECT * FROM t3 ORDER BY a;
a b
1 NULL
2 NULL
3 NULL
4 NULL
5 NULL
-SELECT * FROM t3;
+SELECT * FROM t3 ORDER BY a;
a b c
1 0 500
2 0 500