Commit aea1967c authored by Jan Lindström's avatar Jan Lindström Committed by GitHub

Merge pull request #249 from Cona19/10.1-remove-unnecessary-semicolon

Remove unnecessary semicolons
parents ee1d08c1 9401e6be
...@@ -13926,7 +13926,7 @@ ha_innobase::check( ...@@ -13926,7 +13926,7 @@ ha_innobase::check(
if (!dict_index_is_clust(index)) { if (!dict_index_is_clust(index)) {
prebuilt->index_usable = FALSE; prebuilt->index_usable = FALSE;
row_mysql_lock_data_dictionary(prebuilt->trx); 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); row_mysql_unlock_data_dictionary(prebuilt->trx);
}); });
......
...@@ -2222,7 +2222,7 @@ buf_flush_single_page_from_LRU( ...@@ -2222,7 +2222,7 @@ buf_flush_single_page_from_LRU(
if (ready) { if (ready) {
bool evict_zip; 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); freed = buf_LRU_free_page(bpage, evict_zip);
......
...@@ -14663,7 +14663,7 @@ ha_innobase::check( ...@@ -14663,7 +14663,7 @@ ha_innobase::check(
if (!dict_index_is_clust(index)) { if (!dict_index_is_clust(index)) {
prebuilt->index_usable = FALSE; prebuilt->index_usable = FALSE;
row_mysql_lock_data_dictionary(prebuilt->trx); 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); row_mysql_unlock_data_dictionary(prebuilt->trx);
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment