Commit acdf8550 authored by unknown's avatar unknown

Fixed typo in sql/sql_insert.cc which caused non-debug builds to fail.


sql/sql_insert.cc:
  Fixed typo which caused non-debug builds to fail.
parent e7463046
...@@ -1575,7 +1575,7 @@ int mysql_insert_select_prepare(THD *thd) ...@@ -1575,7 +1575,7 @@ int mysql_insert_select_prepare(THD *thd)
my_error(ER_NON_UPDATABLE_TABLE, MYF(0), table_list->alias, "INSERT"); my_error(ER_NON_UPDATABLE_TABLE, MYF(0), table_list->alias, "INSERT");
DBUG_RETURN(-1); DBUG_RETURN(-1);
} }
DBUG_RETURN(0) DBUG_RETURN(0);
} }
......
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