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

Fixed CORE-4084 - GROUP BY fails if subselect-column is involved.

This commit is contained in:
asfernandes 2013-04-17 15:54:00 +00:00
parent b9a96911ca
commit 2b52e34f3e

View File

@ -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).