galera.galera_truncate 'innodb' w2 [ fail ]
|
Test ended at 2021-01-26 09:23:46
|
|
CURRENT_TEST: galera.galera_truncate
|
mysqltest: At line 35: query 'TRUNCATE TABLE t2' failed: 1146: Table 'test.t2' doesn't exist
|
|
The result from queries just before the failure was:
|
< snip >
|
connection node_2;
|
TRUNCATE TABLE t1;
|
SELECT COUNT(*) = 0 FROM t1;
|
COUNT(*) = 0
|
1
|
connection node_1;
|
SELECT COUNT(*) = 0 FROM t1;
|
COUNT(*) = 0
|
1
|
connection node_2;
|
CREATE TABLE t2 (f1 VARCHAR(255)) Engine=InnoDB;
|
INSERT INTO t2 VALUES ('abc');
|
connection node_1;
|
TRUNCATE TABLE t2;
|