mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
This finishes the work (someone) started to remove FIELD_ types and use the Enum MYSQL types. The second part to this is to actually deprecate the FIELD defines in mysql_com.h
This commit is contained in:
@ -1292,7 +1292,7 @@ int check_that_all_fields_are_given_values(THD *thd, TABLE *entry,
|
||||
{
|
||||
if (!bitmap_is_set(write_set, (*field)->field_index) &&
|
||||
((*field)->flags & NO_DEFAULT_VALUE_FLAG) &&
|
||||
((*field)->real_type() != FIELD_TYPE_ENUM))
|
||||
((*field)->real_type() != MYSQL_TYPE_ENUM))
|
||||
{
|
||||
bool view= FALSE;
|
||||
if (table_list)
|
||||
|
Reference in New Issue
Block a user