diff options
author | Jan Lindström <jan.lindstrom@mariadb.com> | 2017-08-21 14:48:30 +0300 |
---|---|---|
committer | Jan Lindström <jan.lindstrom@mariadb.com> | 2017-08-21 14:48:30 +0300 |
commit | 0aeff8c36add46db1de4287a9461d084b148c31f (patch) | |
tree | f573403db624834d46ebd3f7fa6cf86a530a2150 /sql/sql_parse.cc | |
parent | c23efc7d50530570e6c13207f3c76adcb9237346 (diff) | |
download | mariadb-git-0aeff8c36add46db1de4287a9461d084b148c31f.tar.gz |
Fix compiler error.
Diffstat (limited to 'sql/sql_parse.cc')
-rw-r--r-- | sql/sql_parse.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index 81b71f71760..f5721d2ca2f 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -3663,13 +3663,12 @@ end_with_restore_list: #endif /* EMBEDDED_LIBRARY */ case SQLCOM_SHOW_CREATE: { - DBUG_ASSERT(first_table == all_tables && first_table != 0); + DBUG_ASSERT(first_table == all_tables && first_table != 0); #ifdef DONT_ALLOW_SHOW_COMMANDS my_message(ER_NOT_ALLOWED_COMMAND, ER_THD(thd, ER_NOT_ALLOWED_COMMAND), MYF(0)); /* purecov: inspected */ goto error; #else - { WSREP_SYNC_WAIT(thd, WSREP_SYNC_WAIT_BEFORE_SHOW); /* @@ -3892,7 +3891,6 @@ end_with_restore_list: DBUG_PRINT("debug", ("Just after generate_incident()")); } #endif - } /* fall through */ case SQLCOM_INSERT: { |