Christian Beikov
Christian Beikov
Currently we require an empty constructor in a view to generate the constructor which is used for `EntityViewManager.create`, but this is odd. Also, we currently don't validate if such a...
Sometimes it's not clear why certain pagination decisions are taken. We should introduce some debug logging to be able to better understand this. * Which join nodes are seen as...
More or less a follow up of https://github.com/Blazebit/blaze-persistence/issues/352 The idea is to add support for specifications for DeltaSpike Data as well.
Not sure if this is easily doable, but I just noticed that a predicate like `collection.assocation IS EMPTY` will produce a left join for the collection and the check in...
`CTETest` contains some pagination tests that unnecessarily render CTEs and joins to them in the object query. We should build a dependecy graph for CTEs so that we can detect...
The Collection DML API already allows to reuse a query to reduce the amount of work needed to be done, but ideally, we would offer a way to make use...
Initially I thought this was stupid, but I didn't know that databases might do stupid things during planning when encountering a correlated subquery in a select clause. It's often way...
Currently, when we need collection element ids for deletion, we join the owner, collection/join table and target table which might be quite inefficient if the dbms optimizer doesn't see that...
We could avoid tuple copying that happens in reducers by passing the tuple into the constructor directly and destruct it there.
Reproducer test case for issues with CLIENTWINDOW mode when using POST from non-JSF page to a JSF one. https://issues.apache.org/jira/browse/DELTASPIKE-1393