We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
//page config PageRequest pageable = PageRequest.of(0, 10, Sort.by(Sort.Order.asc("code"))); //Neo4jRepository Page<Node> findByCode(String code, Pageable page);
will generate something like
ORDER BY node.code, node.code LIMIT 10
But with build-in function
.findAll(pageable);
It works fine.
test with spring boot 3.3.2
The text was updated successfully, but these errors were encountered:
It should not do any harm, but it's ugly. I'll have a look.
Sorry, something went wrong.
fix: Check if the pageable sort already contains the additional sort.
6ecc340
If it does or is equal to, don't add it a second time. Fixes #2940
8e3152f
79d8aaf
michael-simons
No branches or pull requests
will generate something like
But with build-in function
It works fine.
test with spring boot 3.3.2
The text was updated successfully, but these errors were encountered: