From bbabf845765f2f5d4d727a8d2319943d7d2671b6 Mon Sep 17 00:00:00 2001 From: Dimitry Sibiryakov Date: Wed, 24 Dec 2025 17:18:49 +0100 Subject: [PATCH] Fix for #8836 --- src/dsql/AggNodes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dsql/AggNodes.cpp b/src/dsql/AggNodes.cpp index 4d86f3c82d7..87fd272e1e1 100644 --- a/src/dsql/AggNodes.cpp +++ b/src/dsql/AggNodes.cpp @@ -597,7 +597,7 @@ void AnyValueAggNode::aggPass(thread_db* tdbb, Request* request, dsc* desc) cons { const auto argValue = EVL_expr(tdbb, request, arg); - if (!argValue) + if (argValue) EVL_make_value(tdbb, argValue, impure); }