Fix sorting issue - #39
Conversation
|
It took me a while to figure out what's going on. It seems that the sorting currently does not take the mapping into account. However, with the However, with custom column names, it breaks.
I just pushed a new fix which makes use of the |
affd4f3 to
106be73
Compare
|
You don't have to add tests for JPA as there's no custom logic for it in this project. |
|
Will do! |
|
Done! |
| return RepositoryFragment.implemented(simpleJPAQuerydslFragment); | ||
| } | ||
|
|
||
| @SuppressWarnings("unchecked") |
There was a problem hiding this comment.
this can be moved above line 97 to minimize the scope (since it's merged I'll do it on master)
Fixes #38
First I created a test that replicates the issue, and added a possible fix in a separate commit.
Do I need to add the same tests for the other packages (JPA/R2DBC)?