diff options
author | monty@mysql.com <> | 2004-03-30 02:32:41 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-03-30 02:32:41 +0300 |
commit | 4bc6b551f83844f01a2284efcf5cc982a9c959b3 (patch) | |
tree | 54b32bf1935af765ea1bb9b118082d9ce067d4c0 /sql/field_conv.cc | |
parent | 585d97b74115cfd40e215c8690c3e512c242c29a (diff) | |
download | mariadb-git-4bc6b551f83844f01a2284efcf5cc982a9c959b3.tar.gz |
false/true -> FALSE/TRUE
Fixes after last merge
Diffstat (limited to 'sql/field_conv.cc')
-rw-r--r-- | sql/field_conv.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/field_conv.cc b/sql/field_conv.cc index 3272c2faf48..5632c63c521 100644 --- a/sql/field_conv.cc +++ b/sql/field_conv.cc @@ -173,7 +173,7 @@ set_field_to_null_with_conversions(Field *field, bool no_conversions) field->reset(); if (field == field->table->next_number_field) { - field->table->auto_increment_field_not_null= false; + field->table->auto_increment_field_not_null= FALSE; return 0; // field is set in handler.cc } if (current_thd->count_cuted_fields == CHECK_FIELD_WARN) |