We are retrieving data from oracle using spring data JDBC
We are using org.springframework.data.relational.core.dialect.OracleDialect to retrieve data from database.
It is working as expected when we have a repository that uses CrudRepository
But if we modify the repository which extends PagingAndSortingRepository to retrieve based on the page number, we are getting an exception.
Based on the analysis, we identified that queries generated by LIMIT_CLAUSE and LOCK_CLAUSE do not adhere to Oracle.
Is there an Oracle dialect to generate a proper limit query which is an instance of org.springframework.data.relational.core.dialect.Dialect?
 
    