mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
Fix for Bug #15722 Engine_condition_pushdown fails when using blobs(text)
This commit is contained in:
parent
2568c2cfed
commit
3372c31d12
3 changed files with 32 additions and 3 deletions
|
|
@ -6587,7 +6587,10 @@ void ndb_serialize_cond(const Item *item, void *arg)
|
|||
context->expecting_field_result(INT_RESULT))
|
||||
: true)) &&
|
||||
// Bit fields no yet supported in scan filter
|
||||
type != MYSQL_TYPE_BIT)
|
||||
type != MYSQL_TYPE_BIT &&
|
||||
// No BLOB support in scan filter
|
||||
type != MYSQL_TYPE_TINY_BLOB &&
|
||||
type != MYSQL_TYPE_BLOB)
|
||||
{
|
||||
const NDBCOL *col= tab->getColumn(field->field_name);
|
||||
DBUG_ASSERT(col);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue