From f1610b3ff39186782025dc8e942aea12d36d6835 Mon Sep 17 00:00:00 2001 From: Khosrow Afroozeh Date: Mon, 18 Mar 2024 14:10:23 +0100 Subject: [PATCH] [CLIENT-2818] Fix return type for ExpListRemoveByValueRange --- exp_list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exp_list.go b/exp_list.go index 5c0b9566..7c8c422d 100644 --- a/exp_list.go +++ b/exp_list.go @@ -201,7 +201,7 @@ func ExpListRemoveByValueRange( args := []ExpressionArgument{ cdtContextList(ctx), IntegerValue(_CDT_LIST_REMOVE_BY_VALUE_INTERVAL), - IntegerValue(ListReturnTypeNone), + IntegerValue(returnType), } if valueBegin != nil { args = append(args, valueBegin)