mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +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:
@@ -903,7 +903,7 @@ dbcontext::fill_filter_buf(TABLE *table, const prep_stmt& pst,
|
||||
}
|
||||
const uint32_t fn = pst.get_filter_fields()[f->ff_offset];
|
||||
Field *const fld = table->field[fn];
|
||||
if ((fld->flags() & BLOB_FLAG) != 0) {
|
||||
if ((fld->flags & BLOB_FLAG) != 0) {
|
||||
return false;
|
||||
}
|
||||
fld->store(f->val.begin(), f->val.size(), &my_charset_bin);
|
||||
|
Reference in New Issue
Block a user