diff options
author | dlenev@brandersnatch.localdomain <> | 2004-07-16 09:45:44 +0400 |
---|---|---|
committer | dlenev@brandersnatch.localdomain <> | 2004-07-16 09:45:44 +0400 |
commit | 3a2ca91efef3857fed31b50304383a02734a48a1 (patch) | |
tree | 4be466497bb9934e84362e0c52e1c91b900c8462 /sql | |
parent | ec9eb5eaa6772c4a5fa6698ae005ff16ddfd50dd (diff) | |
download | mariadb-git-3a2ca91efef3857fed31b50304383a02734a48a1.tar.gz |
Fixed typo in sql/sql_insert.cc which caused non-debug builds to fail.
Diffstat (limited to 'sql')
-rw-r--r-- | sql/sql_insert.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_insert.cc b/sql/sql_insert.cc index 6e30f2f9c76..08bf33e560d 100644 --- a/sql/sql_insert.cc +++ b/sql/sql_insert.cc @@ -1575,7 +1575,7 @@ int mysql_insert_select_prepare(THD *thd) my_error(ER_NON_UPDATABLE_TABLE, MYF(0), table_list->alias, "INSERT"); DBUG_RETURN(-1); } - DBUG_RETURN(0) + DBUG_RETURN(0); } |