From 5d621a1b97618201cd55e56282b965ebe5e5769e Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 28 Mar 2006 11:46:35 +0200 Subject: [PATCH] Post review fix for Bug #15722 Engine_condition_pushdown fails when using blobs(text) --- sql/ha_ndbcluster.cc | 2 ++ 1 file changed, 2 insertions(+) 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);