1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-20342 Turn Field::flags from a member to a method

This commit is contained in:
Alexander Barkov
2019-08-14 10:26:18 +04:00
parent fa21952e25
commit e86010f909
59 changed files with 489 additions and 453 deletions

View File

@ -6708,7 +6708,7 @@ void THD::binlog_prepare_row_images(TABLE *table)
{
Field *field= (*ptr);
if ((field->type() == MYSQL_TYPE_BLOB) &&
!(field->flags & PRI_KEY_FLAG))
!(field->flags() & PRI_KEY_FLAG))
bitmap_clear_bit(&table->tmp_set, field->field_index);
}
break;