diff --git a/pkg/sql/conditional_schema_adapter_postgresql_test.go b/pkg/sql/conditional_schema_adapter_postgresql_test.go index 7e5ce22..cc51280 100644 --- a/pkg/sql/conditional_schema_adapter_postgresql_test.go +++ b/pkg/sql/conditional_schema_adapter_postgresql_test.go @@ -20,7 +20,7 @@ func TestConditionalPostgreSQLSchemaAdapter(t *testing.T) { schemaAdapter := sql.ConditionalPostgreSQLSchema{ GenerateWhereClause: func(params sql.GenerateWhereClauseParams) (string, []any) { - return fmt.Sprintf("(metadata->>'skip') IS NULL OR (metadata->>'skip') != 'true'"), nil + return "(metadata->>'skip') IS NULL OR (metadata->>'skip') != 'true'", nil }, }