mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 00:03:02 +01:00
Fixed CORE-4084 - GROUP BY fails if subselect-column is involved.
This commit is contained in:
parent
b9a96911ca
commit
2b52e34f3e
@ -2247,7 +2247,9 @@ bool RseNode::dsqlMatch(const ExprNode* other, bool /*ignoreMapCast*/) const
|
||||
if (!o)
|
||||
return false;
|
||||
|
||||
return dsqlContext && dsqlContext == o->dsqlContext;
|
||||
// ASF: Commented-out code "Fixed assertion when subquery is used in group by" to make
|
||||
// CORE-4084 work again.
|
||||
return /***dsqlContext &&***/ dsqlContext == o->dsqlContext;
|
||||
}
|
||||
|
||||
// Make up join node and mark relations as "possibly NULL" if they are in outer joins (inOuterJoin).
|
||||
|
Loading…
Reference in New Issue
Block a user