8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 20:03:02 +01:00

Fixed bug #8087 : AV when preparing a query with IN list that contains both literals and sub-query

This commit is contained in:
Vlad Khorsun 2024-04-17 22:36:09 +03:00
parent 7421df185f
commit 0e9ef6965d

View File

@ -1287,7 +1287,7 @@ BoolExprNode* InListBoolNode::dsqlPass(DsqlCompilerScratch* dsqlScratch)
const auto castNode = FB_NEW_POOL(dsqlScratch->getPool())
CastNode(dsqlScratch->getPool(), item, field);
item = castNode->dsqlPass(dsqlScratch);
item = castNode;
}
}