1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-09 22:24:09 +03:00

Remove unnecessary semicolons

This commit is contained in:
Hyeonseok Oh
2016-10-24 14:58:41 +09:00
parent ee1d08c115
commit 9401e6befd
3 changed files with 3 additions and 3 deletions

View File

@@ -13926,7 +13926,7 @@ ha_innobase::check(
if (!dict_index_is_clust(index)) {
prebuilt->index_usable = FALSE;
row_mysql_lock_data_dictionary(prebuilt->trx);
dict_set_corrupted(index, prebuilt->trx, "dict_set_index_corrupted");;
dict_set_corrupted(index, prebuilt->trx, "dict_set_index_corrupted");
row_mysql_unlock_data_dictionary(prebuilt->trx);
});

View File

@@ -2222,7 +2222,7 @@ buf_flush_single_page_from_LRU(
if (ready) {
bool evict_zip;
evict_zip = !buf_LRU_evict_from_unzip_LRU(buf_pool);;
evict_zip = !buf_LRU_evict_from_unzip_LRU(buf_pool);
freed = buf_LRU_free_page(bpage, evict_zip);

View File

@@ -14663,7 +14663,7 @@ ha_innobase::check(
if (!dict_index_is_clust(index)) {
prebuilt->index_usable = FALSE;
row_mysql_lock_data_dictionary(prebuilt->trx);
dict_set_corrupted(index, prebuilt->trx, "dict_set_index_corrupted");;
dict_set_corrupted(index, prebuilt->trx, "dict_set_index_corrupted");
row_mysql_unlock_data_dictionary(prebuilt->trx);
});