chore: remove explicit where

This commit is contained in:
srikanthccv 2025-05-30 21:18:13 +05:30
parent e07f3bdfce
commit e1e68f5299

View File

@ -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,
},