diff options
author | Monty <monty@mariadb.org> | 2016-08-29 13:11:34 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2016-08-29 13:11:34 +0300 |
commit | e139d971ecbffe00d9a5626fdcd69aa1b9ba0f2c (patch) | |
tree | 13a2f706c6a12d11a325e7d32c929db317872bf3 /storage | |
parent | 96e95b5465e2e3e629d532f24ebe166f979dd220 (diff) | |
download | mariadb-git-e139d971ecbffe00d9a5626fdcd69aa1b9ba0f2c.tar.gz |
Fixed compiler warning and failing test suite because system dependency
Diffstat (limited to 'storage')
-rw-r--r-- | storage/maria/ma_extra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/maria/ma_extra.c b/storage/maria/ma_extra.c index 50ad44f09a9..117a302b418 100644 --- a/storage/maria/ma_extra.c +++ b/storage/maria/ma_extra.c @@ -316,10 +316,10 @@ int maria_extra(MARIA_HA *info, enum ha_extra_function function, /* Fall trough */ case HA_EXTRA_PREPARE_FOR_RENAME: { - DBUG_ASSERT(!share->temporary); my_bool do_flush= MY_TEST(function != HA_EXTRA_PREPARE_FOR_DROP); my_bool save_global_changed; enum flush_type type; + DBUG_ASSERT(!share->temporary); /* This share, to have last_version=0, needs to save all its data/index blocks to disk if this is not for a DROP TABLE. Otherwise they would be |