mirror of
https://github.com/MariaDB/server.git
synced 2025-11-27 05:41:41 +03:00
Other things, mainly to get create_mysqld_error_find_printf_error tool to work: - Added protection to not include mysqld_error.h twice - Include "unireg.h" instead of "mysqld_error.h" in server - Added protection if ER_XX messages are already defined - Removed wrong calls to my_error(ER_OUTOFMEMORY) as my_malloc() and my_alloc will do this automatically - Added missing %s to ER_DUP_QUERY_NAME - Removed old and wrong calls to my_strerror() when using MY_ERROR_ON_RENAME (wrong merge) - Fixed deadlock error message from Galera. Before the extra information given to ER_LOCK_DEADLOCK was missing because ER_LOCK_DEADLOCK doesn't provide any extra information. I kept #ifdef mysqld_error_find_printf_error_used in sql_acl.h to make it easy to do this kind of check again in the future
14 lines
429 B
Plaintext
14 lines
429 B
Plaintext
connection node_1;
|
|
connection node_2;
|
|
call mtr.add_suppression("WSREP: TO isolation failed for: ");
|
|
connection node_1;
|
|
connection node_2;
|
|
Killing server ...
|
|
connection node_1;
|
|
CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;
|
|
ERROR 40001: WSREP replication failed. Check your wsrep connection state and retry the query.
|
|
connection node_2;
|
|
connect node_2a, 127.0.0.1, root, , test, $NODE_MYPORT_2;
|
|
disconnect node_2;
|
|
disconnect node_1;
|