diff options
author | monty@mashka.mysql.fi <> | 2003-10-11 23:26:39 +0300 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-10-11 23:26:39 +0300 |
commit | c60a75e9ba08cd1937e73a42ca065b992a4f47d2 (patch) | |
tree | ef3d1cebc764d28840dd77ecb91ade0a6f1b593e /sql/sql_select.cc | |
parent | a533d88693f43cd92e1f42ea03fcfc2316a289a6 (diff) | |
download | mariadb-git-c60a75e9ba08cd1937e73a42ca065b992a4f47d2.tar.gz |
Add warnings for single line inserts. To do this I had to convert count_cuted_fields to an enum (to be able to detect setting a NOT NULL field to NULL)
Diffstat (limited to 'sql/sql_select.cc')
-rw-r--r-- | sql/sql_select.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_select.cc b/sql/sql_select.cc index 4bab97d4a46..96b80f89bda 100644 --- a/sql/sql_select.cc +++ b/sql/sql_select.cc @@ -3218,9 +3218,9 @@ store_val_in_field(Field *field,Item *item) bool error; THD *thd=current_thd; ha_rows cuted_fields=thd->cuted_fields; - thd->count_cuted_fields=1; + thd->count_cuted_fields= CHECK_FIELD_WARN; error= item->save_in_field(field, 1); - thd->count_cuted_fields=0; + thd->count_cuted_fields= CHECK_FIELD_IGNORE; return error || cuted_fields != thd->cuted_fields; } |