diff options
author | Monty <monty@mariadb.org> | 2016-04-07 19:26:25 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2016-04-07 19:31:10 +0300 |
commit | 293cb04959172f65b9d62124fd20339c47658eb0 (patch) | |
tree | 72433a6e0813d2e01038df7d44da8c4af340597d /sql/table.h | |
parent | 4b6a3518e4dc9088d1f42cd9bc487d06137d2760 (diff) | |
download | mariadb-git-293cb04959172f65b9d62124fd20339c47658eb0.tar.gz |
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
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/table.h b/sql/table.h index 023d5e542b8..eb4076e02e2 100644 --- a/sql/table.h +++ b/sql/table.h @@ -2005,6 +2005,7 @@ struct TABLE_LIST bool updating; /* for replicate-do/ignore table */ bool force_index; /* prefer index over table scan */ bool ignore_leaves; /* preload only non-leaf nodes */ + bool crashed; /* Table was found crashed */ table_map dep_tables; /* tables the table depends on */ table_map on_expr_dep_tables; /* tables on expression depends on */ struct st_nested_join *nested_join; /* if the element is a nested join */ |