application:
datasource:
database: H2
url: jdbc:h2:mem:testdb:envers;Mode=Oracle;
userName: sa
password:
showSql: true
driverClassName: org.h2.Driver
jpaDialect: org.hibernate.dialect.H2Dialect
generateDDL: true
connectionPoolSize: 10
Like mentioned same as above in the thread, the query is generated by Hibernate having no control on how the limiting clause is implemented cause of pageable. Need a work around to resolve this.
Thanks in advance.
Vinay