mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 18:20:07 +01:00
bug #26225 Engine condition pushdown doesn't work with prepare statements (ps_7ndb): ensure that query plan for prepared statement is analyzed correctly
This commit is contained in:
parent
2d0bd82a06
commit
6ac9a28ef0
2 changed files with 3 additions and 1 deletions
|
@ -7058,7 +7058,7 @@ void ndb_serialize_cond(const Item *item, void *arg)
|
|||
Check that the field is part of the table of the handler
|
||||
instance and that we expect a field with of this result type.
|
||||
*/
|
||||
if (context->table == field->table)
|
||||
if (context->table->s == field->table->s)
|
||||
{
|
||||
const NDBTAB *tab= (const NDBTAB *) context->ndb_table;
|
||||
DBUG_PRINT("info", ("FIELD_ITEM"));
|
||||
|
|
|
@ -231,6 +231,8 @@ void Item_func::traverse_cond(Cond_traverser traverser,
|
|||
(*traverser)(this, argument);
|
||||
}
|
||||
}
|
||||
else
|
||||
(*traverser)(this, argument);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue