1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

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

This commit is contained in:
dlenev@brandersnatch.localdomain
2004-07-16 09:45:44 +04:00
parent ec9eb5eaa6
commit 3a2ca91efe

View File

@@ -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);
} }