summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/basic.result
blob: e85c805253f1ce15cb0146b292d8cbe14fca483d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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
connection node_1;
SELECT * FROM test.t1;
c1
1
2
3
4
5

# On node_2
connection node_2;
SELECT * FROM test.t1;
c1
1
2
3
4
5
DROP TABLE t1;
disconnect node_2;
disconnect node_1;
# End of test