Commit 37a6167d authored by mskold@mysql.com's avatar mskold@mysql.com

Post review fix for Bug #15722 Engine_condition_pushdown fails when using blobs(text)

parent 6e0d4d2d
...@@ -6590,6 +6590,8 @@ void ndb_serialize_cond(const Item *item, void *arg) ...@@ -6590,6 +6590,8 @@ void ndb_serialize_cond(const Item *item, void *arg)
type != MYSQL_TYPE_BIT && type != MYSQL_TYPE_BIT &&
// No BLOB support in scan filter // No BLOB support in scan filter
type != MYSQL_TYPE_TINY_BLOB && type != MYSQL_TYPE_TINY_BLOB &&
type != MYSQL_TYPE_MEDIUM_BLOB &&
type != MYSQL_TYPE_LONG_BLOB &&
type != MYSQL_TYPE_BLOB) type != MYSQL_TYPE_BLOB)
{ {
const NDBCOL *col= tab->getColumn(field->field_name); const NDBCOL *col= tab->getColumn(field->field_name);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment