fix(filters): change label filtering to 'and' instead of 'or' (#8661)

* fix(filters): change label filtering to 'and' instead of 'or'

link to #8489

* test(execution): add test to validate and behavior

* test(execution): fix test
This commit is contained in:
YannC
2025-05-23 11:26:46 +02:00
committed by GitHub
parent 99a6d7533c
commit 88fa884e26
4 changed files with 26 additions and 5 deletions

View File

@@ -47,6 +47,6 @@ public abstract class H2ExecutionRepositoryService {
});
return conditions.isEmpty() ? DSL.trueCondition() : DSL.or(conditions);
return conditions.isEmpty() ? DSL.trueCondition() : DSL.and(conditions);
}
}