Commit 456517b8 authored by Sergei Golubchik's avatar Sergei Golubchik

compiler warnings

parent 97b563b5
...@@ -5,7 +5,7 @@ IF(WIN32) ...@@ -5,7 +5,7 @@ IF(WIN32)
RETURN() RETURN()
ENDIF() ENDIF()
MY_CHECK_AND_SET_COMPILER_FLAG("-Wdeprecated-declarations") MY_CHECK_AND_SET_COMPILER_FLAG("-Wno-deprecated-declarations")
INCLUDE_DIRECTORIES(libhsclient) INCLUDE_DIRECTORIES(libhsclient)
......
...@@ -2657,7 +2657,7 @@ fts_optimize_new_table( ...@@ -2657,7 +2657,7 @@ fts_optimize_new_table(
empty_slot = i; empty_slot = i;
} else if (slot->table == table) { } else if (slot->table == table) {
/* Already exists in our optimize queue. */ /* Already exists in our optimize queue. */
ut_ad(slot->table_id = table->id); ut_ad(slot->table_id == table->id);
return(FALSE); return(FALSE);
} }
} }
......
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