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

Fixed #7903: Unexpected Results when Using CASE-WHEN with LEFT JOIN

This commit is contained in:
Dmitry Yemanov 2023-12-03 18:49:44 +03:00
parent cc8cb88f6e
commit 898bf01575

View File

@ -586,6 +586,11 @@ public:
virtual void genBlr(DsqlCompilerScratch* dsqlScratch);
virtual void make(DsqlCompilerScratch* dsqlScratch, dsc* desc);
virtual bool ignoreNulls(const StreamList& /*streams*/) const
{
return false;
}
virtual void getDesc(thread_db* tdbb, CompilerScratch* csb, dsc* desc);
virtual ValueExprNode* copy(thread_db* tdbb, NodeCopier& copier) const;
virtual ValueExprNode* pass2(thread_db* tdbb, CompilerScratch* csb);