Skip to content

Commit bbabf84

Browse files
committed
Fix for #8836
1 parent 0317f68 commit bbabf84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dsql/AggNodes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ void AnyValueAggNode::aggPass(thread_db* tdbb, Request* request, dsc* desc) cons
597597
{
598598
const auto argValue = EVL_expr(tdbb, request, arg);
599599

600-
if (!argValue)
600+
if (argValue)
601601
EVL_make_value(tdbb, argValue, impure);
602602
}
603603

0 commit comments

Comments
 (0)