1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Merged r3468 from maria-5.5-galera.

This commit is contained in:
Nirbhay Choubey
2014-03-27 08:22:29 -04:00
parent 7fd382f117
commit 43c6c2ac77
14 changed files with 306 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
USE test;
CREATE TABLE t1(c1 INT PRIMARY KEY) ENGINE=INNODB;
INSERT INTO t1 VALUES (1), (2), (3), (4), (5);
SELECT * FROM t1;
c1
1
2
3
4
5
# On node_1
SELECT * FROM test.t1;
c1
1
2
3
4
5
# On node_2
SELECT * FROM test.t1;
c1
1
2
3
4
5
DROP TABLE t1;
# End of test