1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Updated test cases for testing Cluster Replication using the rpl* test cases

This commit is contained in:
jmiller@mysql.com
2006-01-18 00:45:23 +01:00
parent 4d885f5c03
commit 8e5e0afae3
22 changed files with 215 additions and 156 deletions

View File

@@ -24,59 +24,59 @@ insert into t1 values (@a),(@a);
select * from t1 where n = '<nonexistant>';
n
insert into t1 values (@a),(@a),(@a*5);
select * from t1;
SELECT * FROM t1 ORDER BY n;
n
12345678901234
NULL
NULL
NULL
NULL
NULL
-1
-12.5
-12345678901234
0
-1
12.5
-12.5
This is a test
abc'def
abc\def
abc'def
NULL
NULL
0
1
12.5
12345678901234
2
5
5
5
abc
abc'def
abc'def
abcn1
abcn1n2
5
5
NULL
NULL
NULL
select * from t1;
abc\def
This is a test
SELECT * FROM t1 ORDER BY n;
n
12345678901234
NULL
NULL
NULL
NULL
NULL
-1
-12.5
-12345678901234
0
-1
12.5
-12.5
This is a test
abc'def
abc\def
abc'def
NULL
NULL
0
1
12.5
12345678901234
2
5
5
5
abc
abc'def
abc'def
abcn1
abcn1n2
5
5
NULL
NULL
NULL
abc\def
This is a test
drop table t1;
stop slave;