mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
Revert "MDEV-20342 Turn Field::flags from a member to a method"
This reverts commit e86010f909.
Reverting on Monty's request, as this change makes merging
things from 10.5 to 10.2 much harder.
This commit is contained in:
@@ -2563,7 +2563,7 @@ public:
|
||||
{
|
||||
Field *field=((Item_field*) args[0]->real_item())->field;
|
||||
|
||||
if ((field->flags() & NOT_NULL_FLAG) &&
|
||||
if ((field->flags & NOT_NULL_FLAG) &&
|
||||
field->type_handler()->cond_notnull_field_isnull_to_field_eq_zero())
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user