Skip to content

Commit

Permalink
Fixed CORE-4807 - Regression: List of aggregation is not checked prop…
Browse files Browse the repository at this point in the history
…erly.
  • Loading branch information
asfernandes committed Jun 7, 2015
1 parent 5bdef01 commit 1b7f77b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/jrd/RecordSourceNodes.cpp
Expand Up @@ -2235,7 +2235,8 @@ bool RseNode::dsqlAggregate2Finder(Aggregate2Finder& visitor)

bool RseNode::dsqlInvalidReferenceFinder(InvalidReferenceFinder& visitor)
{
return (flags & FLAG_DSQL_COMPARATIVE) && RecordSourceNode::dsqlInvalidReferenceFinder(visitor);
return //// CORE-4807: (flags & FLAG_DSQL_COMPARATIVE) &&
RecordSourceNode::dsqlInvalidReferenceFinder(visitor);
}

bool RseNode::dsqlSubSelectFinder(SubSelectFinder& visitor)
Expand Down

0 comments on commit 1b7f77b

Please sign in to comment.