From 23da26eb85357079123603cffe78ee33ba8dfbb8 Mon Sep 17 00:00:00 2001 From: He Zhenxing Date: Sat, 21 Nov 2009 19:50:15 +0800 Subject: [PATCH] Post fix for previous patch of bug#37148 sql/sql_table.cc: Add the missing return 0 --- sql/sql_table.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/sql/sql_table.cc b/sql/sql_table.cc index 2bfcabb957e..691b248fb2e 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -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; }