1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Post fix for previous patch of bug#37148

sql/sql_table.cc:
  Add the missing return 0
This commit is contained in:
He Zhenxing
2009-11-21 19:50:15 +08:00
parent b9268fc8ea
commit 23da26eb85

View File

@ -3599,6 +3599,7 @@ static inline int write_create_table_bin_log(THD *thd,
(thd->current_stmt_binlog_row_based &&
!(create_info->options & HA_LEX_CREATE_TMP_TABLE))))
return write_bin_log(thd, TRUE, thd->query(), thd->query_length());
return 0;
}