mirror of
https://github.com/MariaDB/server.git
synced 2025-02-12 00:15:35 +01:00
17 lines
437 B
Text
17 lines
437 B
Text
connection node_2;
|
|
connection node_1;
|
|
connection node_1;
|
|
DROP TABLE t1;
|
|
ERROR 42S02: Unknown table 'test.t1'
|
|
CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO t1 VALUES (1);
|
|
connection node_2;
|
|
SELECT * FROM t1;
|
|
f1
|
|
1
|
|
connection node_1;
|
|
GRA_.log
|
|
DROP TABLE t1;
|
|
CALL mtr.add_suppression("Ignoring error 'Unknown table 'test\\.t1'' on query");
|
|
connection node_2;
|
|
CALL mtr.add_suppression("Error 'Unknown table 'test\\.t1'' on query");
|