Fix: Minor bug introduced in #10914 (#11053)

This commit is contained in:
Nahuel 2023-04-13 23:58:51 +02:00 committed by GitHub
parent 49edea5fdc
commit 26c7c20cfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -142,7 +142,7 @@ public class ListFilter {
}
return tableName == null
? String.format("json->>'pipelineType' = '%s'", pipelineType)
: String.format("json->>'pipelineType' = '%s%%'", tableName, pipelineType);
: String.format("%s.json->>'pipelineType' = '%s%%'", tableName, pipelineType);
}
private String getCategoryPrefixCondition(String tableName, String category) {