8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 04:43:03 +01:00

Fixed #7993: Unexpected results when using CASE WHEN with RIGHT JOIN

This commit is contained in:
Dmitry Yemanov 2024-02-06 11:46:43 +03:00
parent 9e2a7021bb
commit 7a8b2ce0f0

View File

@ -540,6 +540,11 @@ public:
virtual ValueExprNode* pass2(thread_db* tdbb, CompilerScratch* csb);
virtual dsc* execute(thread_db* tdbb, jrd_req* request) const;
virtual bool possiblyUnknown(OptimizerBlk* /*opt*/)
{
return true;
}
public:
Firebird::string label;
NestConst<ValueExprNode> test;