mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
15 lines
264 B
Plaintext
15 lines
264 B
Plaintext
#
|
|
# Simple test for wsrep_mode != REPLICATE_MYISAM
|
|
#
|
|
|
|
--source include/galera_cluster.inc
|
|
|
|
CREATE TABLE t1 (f1 INT PRIMARY KEY) Engine=MyISAM;
|
|
INSERT INTO t1 VALUES (1);
|
|
|
|
--connection node_2
|
|
SELECT COUNT(*) AS EXPECT_0 FROM t1;
|
|
|
|
--connection node_1
|
|
DROP TABLE t1;
|