From 64cc044e33632b6805e13bc04cbaf7e079c66d32 Mon Sep 17 00:00:00 2001 From: Magne Mahre Date: Tue, 10 Aug 2010 14:12:11 +0200 Subject: [PATCH] Post-commit fix for Bug#41158 A label statement needs to be followed by at least one primary expression. If built without WITH_PARTITION_STORAGE_ENGINE set, the block would be empty. Added ';' as a dummy statement to fix it. --- sql/sql_table.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/sql/sql_table.cc b/sql/sql_table.cc index 3f777411103..5e1133fc6d8 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -1783,6 +1783,7 @@ err: part_info->frm_log_entry= NULL; (void) sync_ddl_log(); #endif + ; } end: