diff options
author | unknown <mskold@mysql.com> | 2006-03-28 11:46:35 +0200 |
---|---|---|
committer | unknown <mskold@mysql.com> | 2006-03-28 11:46:35 +0200 |
commit | 5d621a1b97618201cd55e56282b965ebe5e5769e (patch) | |
tree | d5527641ca8f31b9f7973d30f6d35d10abca8753 /sql | |
parent | e39256f8f44842e962289cd4abcfaaea4a5dd631 (diff) | |
download | mariadb-git-5d621a1b97618201cd55e56282b965ebe5e5769e.tar.gz |
Post review fix for Bug #15722 Engine_condition_pushdown fails when using blobs(text)
Diffstat (limited to 'sql')
-rw-r--r-- | sql/ha_ndbcluster.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/ha_ndbcluster.cc b/sql/ha_ndbcluster.cc index 14bdb529aee..5779bca677a 100644 --- a/sql/ha_ndbcluster.cc +++ b/sql/ha_ndbcluster.cc @@ -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); |