mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
23 lines
717 B
Plaintext
23 lines
717 B
Plaintext
connection node_2;
|
|
connection node_1;
|
|
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE=InnoDB;
|
|
connection node_2;
|
|
SET GLOBAL wsrep_load_data_splitting = TRUE;
|
|
Warnings:
|
|
Warning 1287 '@@wsrep_load_data_splitting' is deprecated and will be removed in a future release
|
|
connection node_2;
|
|
SELECT COUNT(*) = 95000 FROM t1;
|
|
COUNT(*) = 95000
|
|
1
|
|
wsrep_last_committed_diff
|
|
1
|
|
connection node_1;
|
|
SET GLOBAL wsrep_load_data_splitting = 0;;
|
|
Warnings:
|
|
Warning 1287 '@@wsrep_load_data_splitting' is deprecated and will be removed in a future release
|
|
connection node_2;
|
|
SET GLOBAL wsrep_load_data_splitting = 0;;
|
|
Warnings:
|
|
Warning 1287 '@@wsrep_load_data_splitting' is deprecated and will be removed in a future release
|
|
DROP TABLE t1;
|