Igor Dianov
Igor Dianov
@ieugen Thank you for feedback. The `keyset` pagination method does offer significant performance improvements. Keyset is efficient than an OFFSET based paging/scrolling because this approach can scroll to the next...
@ieugen So, I am thinking it would be relatively simple to make test case based on the example from https://blazebit.com/blog/2016/pagination-blog-post.html. The only requirement to enable keyset method work is to...
@quidl It sounds like a interesting idea! Can you explain your use case in more detail?
@phuongphally Do you merge two schemas from different sources? If you use one entity manager it should not be a problem?
@phuongphally This looks like a regression introduced in later versions. Can you create a PR with a minimal test example of the entity model that causes this error? I will...
@phuongphally I suspect the problem is with custom object scalar mapping, but I need an example that fails for test case. Can you post the minimal example with JPA models...
@phuongphally Thank you for troubleshooting this! I will fix it today.
@phuongphally I tried to apply the fix, but it causes many existing introspection unit tests to fail. The entity introspection relies on JPA persistence provider to have `Attribute` metadata descriptor...
I can't fix it like this because it breaks detecting transient properties in the entity class. I need an example to be able to reproduce and investigate the cause.
@chanhengseang3 Is `@Transient` on enity class part of JPA spec? Do you have any references that it is valid?