mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-9621 INSERT DELAYED fails on insert for tables with many columns
This fix also fixes a connection hang when trying to do INSERT DELAYED to a crashed table. Added crash_mysqld.inc to allow easy crash+restart of mysqld
This commit is contained in:
@ -107,6 +107,10 @@ TABLE *open_ltable(THD *thd, TABLE_LIST *table_list, thr_lock_type update,
|
||||
table flush, wait on thr_lock.c locks) while opening and locking table.
|
||||
*/
|
||||
#define MYSQL_OPEN_IGNORE_KILLED 0x8000
|
||||
/**
|
||||
Don't try to auto-repair table
|
||||
*/
|
||||
#define MYSQL_OPEN_IGNORE_REPAIR 0x10000
|
||||
|
||||
/** Please refer to the internals manual. */
|
||||
#define MYSQL_OPEN_REOPEN (MYSQL_OPEN_IGNORE_FLUSH |\
|
||||
|
Reference in New Issue
Block a user