summaryrefslogtreecommitdiff
path: root/storage/myisam
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2019-03-10 18:55:35 +0100
committerSergei Golubchik <serg@mariadb.org>2019-03-12 09:51:42 +0100
commit69abd43703fcf68c4cf1056bf5bd56c690de5b4e (patch)
tree5a573a0a3c1105e7b96cebbf4a3fe130df36eaa8 /storage/myisam
parent7025a51a7b85376b2f01b1f32e737278e9aa659b (diff)
downloadmariadb-git-69abd43703fcf68c4cf1056bf5bd56c690de5b4e.tar.gz
MDEV-17070 Table corruption or Assertion `table->file->stats.records > 0 || error' or Assertion `!is_set() || (m_status == DA_OK_BULK && is_bulk_op())' failed upon actions on temporary table
This was caused by a combination of factors: * MyISAM/Aria temporary tables historically never saved the state to disk (MYI/MAI), because the state never needed to persist * certain ALTER TABLE operations modify the original TABLE structure and if they fail, the original table has to be reopened to revert all changes (m_needs_reopen=1) as a result, when ALTER fails and MyISAM/Aria temp table gets reopened, it reads the stale state from the disk. As a fix, MyISAM/Aria tables now *always* write the state to disk on close, *unless* HA_EXTRA_PREPARE_FOR_DROP was done first. And the server now always does HA_EXTRA_PREPARE_FOR_DROP before dropping a temporary table.
Diffstat (limited to 'storage/myisam')
-rw-r--r--storage/myisam/mi_close.c17
-rw-r--r--storage/myisam/mi_extra.c4
2 files changed, 12 insertions, 9 deletions
diff --git a/storage/myisam/mi_close.c b/storage/myisam/mi_close.c
index ad1d3074a27..5f2154534ae 100644
--- a/storage/myisam/mi_close.c
+++ b/storage/myisam/mi_close.c
@@ -65,11 +65,8 @@ int mi_close(register MI_INFO *info)
DBUG_EXECUTE_IF("crash_before_flush_keys",
if (share->kfile >= 0) DBUG_ABORT(););
if (share->kfile >= 0 &&
- flush_key_blocks(share->key_cache, share->kfile,
- &share->dirty_part_map,
- ((share->temporary || share->deleting) ?
- FLUSH_IGNORE_CHANGED :
- FLUSH_RELEASE)))
+ flush_key_blocks(share->key_cache, share->kfile, &share->dirty_part_map,
+ share->deleting ? FLUSH_IGNORE_CHANGED : FLUSH_RELEASE))
error=my_errno;
if (share->kfile >= 0)
{
@@ -77,10 +74,14 @@ int mi_close(register MI_INFO *info)
If we are crashed, we can safely flush the current state as it will
not change the crashed state.
We can NOT write the state in other cases as other threads
- may be using the file at this point
- IF using --external-locking.
+ may be using the file at this point IF using --external-locking.
+
+ Also, write the state if a temporary table is not being dropped
+ (the server might want to reopen it, and mi_lock_database() only
+ writes the state for non-temp ones)
*/
- if (share->mode != O_RDONLY && mi_is_crashed(info))
+ if (share->mode != O_RDONLY &&
+ (mi_is_crashed(info) || (share->temporary && !share->deleting)))
mi_state_info_write(share->kfile, &share->state, 1);
/* Decrement open count must be last I/O on this file. */
_mi_decrement_open_count(info);
diff --git a/storage/myisam/mi_extra.c b/storage/myisam/mi_extra.c
index 39b28d95759..dcb79a8dc3e 100644
--- a/storage/myisam/mi_extra.c
+++ b/storage/myisam/mi_extra.c
@@ -260,9 +260,11 @@ int mi_extra(MI_INFO *info, enum ha_extra_function function, void *extra_arg)
break;
case HA_EXTRA_PREPARE_FOR_DROP:
/* Signals about intent to delete this table */
- //share->deleting= TRUE;
+ share->deleting= TRUE;
share->global_changed= FALSE; /* force writing changed flag */
_mi_mark_file_changed(info);
+ if (share->temporary)
+ break;
/* fall through */
case HA_EXTRA_PREPARE_FOR_RENAME:
DBUG_ASSERT(!share->temporary);