mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
Post review fix for Bug #15722 Engine_condition_pushdown fails when using blobs(text)
This commit is contained in:
parent
e39256f8f4
commit
5d621a1b97
1 changed files with 2 additions and 0 deletions
|
@ -6590,6 +6590,8 @@ void ndb_serialize_cond(const Item *item, void *arg)
|
|||
type != MYSQL_TYPE_BIT &&
|
||||
// No BLOB support in scan filter
|
||||
type != MYSQL_TYPE_TINY_BLOB &&
|
||||
type != MYSQL_TYPE_MEDIUM_BLOB &&
|
||||
type != MYSQL_TYPE_LONG_BLOB &&
|
||||
type != MYSQL_TYPE_BLOB)
|
||||
{
|
||||
const NDBCOL *col= tab->getColumn(field->field_name);
|
||||
|
|
Loading…
Reference in a new issue