File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
spring-data-relational/src/main/java/org/springframework/data/relational/core/dialect Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 279279 <id >spring-libs-snapshot</id >
280280 <url >https://repo.spring.io/libs-snapshot</url >
281281 </repository >
282+ <repository >
283+ <id >oss-sonatype-snapshot</id >
284+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
285+ </repository >
282286 </repositories >
283287
284288 <pluginRepositories >
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ public String getOffset(long offset) {
6767 */
6868 @ Override
6969 public String getLimitOffset (long limit , long offset ) {
70- return String .format ("LIMIT %d OFFSET %d " , limit , offset );
70+ return String .format ("OFFSET %d ROWS FETCH FIRST %d ROWS ONLY " , offset , limit );
7171 }
7272
7373 /*
You can’t perform that action at this time.
0 commit comments