From e1e68f529921aa786c066845f3ad2d66d49b08a8 Mon Sep 17 00:00:00 2001 From: srikanthccv Date: Fri, 30 May 2025 21:18:13 +0530 Subject: [PATCH] chore: remove explicit where --- pkg/telemetrymetrics/condition_builder_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/telemetrymetrics/condition_builder_test.go b/pkg/telemetrymetrics/condition_builder_test.go index 7e264af654..9d6ae2e53e 100644 --- a/pkg/telemetrymetrics/condition_builder_test.go +++ b/pkg/telemetrymetrics/condition_builder_test.go @@ -93,7 +93,7 @@ func TestConditionFor(t *testing.T) { }, operator: qbtypes.FilterOperatorNotILike, value: "%admin%", - expectedSQL: "WHERE LOWER(JSONExtractString(labels, 'user.id')) NOT LIKE LOWER(?)", + expectedSQL: "LOWER(JSONExtractString(labels, 'user.id')) NOT LIKE LOWER(?)", expectedArgs: []any{"%admin%"}, expectedError: nil, },