mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
5e0b13d173
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
32 lines
1.1 KiB
Text
32 lines
1.1 KiB
Text
connection node_1;
|
|
CREATE DATABASE database1;
|
|
USE database1;
|
|
CREATE TABLE ten (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO ten VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
|
|
CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;
|
|
CREATE TABLE t2 (f1 INTEGER) ENGINE=InnoDB;
|
|
SET SESSION wsrep_retry_autocommit = 0;
|
|
INSERT INTO t1 (f1) SELECT 1 FROM ten AS a1, ten AS a2, ten AS a3, ten AS a4, ten AS a5, ten AS a6;;
|
|
connection node_1a;
|
|
USE database1;
|
|
SET SESSION wsrep_retry_autocommit = 0;
|
|
INSERT INTO t2 (f1) SELECT 1 FROM ten AS a1, ten AS a2, ten AS a3, ten AS a4, ten AS a5, ten AS a6;;
|
|
connection node_2;
|
|
DROP DATABASE database1;;
|
|
connection node_1;
|
|
ERROR 40001: Deadlock: wsrep aborted transaction
|
|
connection node_1a;
|
|
ERROR 40001: Deadlock: wsrep aborted transaction
|
|
connection node_2;
|
|
connection node_1;
|
|
SELECT COUNT(*) = 0 FROM INFORMATION_SCHEMA.SCHEMATA WHERE SCHEMA_NAME = 'database1';
|
|
COUNT(*) = 0
|
|
1
|
|
USE database1;
|
|
ERROR 42000: Unknown database 'database1'
|
|
connection node_2;
|
|
SELECT COUNT(*) = 0 FROM INFORMATION_SCHEMA.SCHEMATA WHERE SCHEMA_NAME = 'database1';
|
|
COUNT(*) = 0
|
|
1
|
|
USE database1;
|
|
ERROR 42000: Unknown database 'database1'
|