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 279
279
<id >spring-libs-snapshot</id >
280
280
<url >https://repo.spring.io/libs-snapshot</url >
281
281
</repository >
282
+ <repository >
283
+ <id >oss-sonatype-snapshot</id >
284
+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
285
+ </repository >
282
286
</repositories >
283
287
284
288
<pluginRepositories >
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ public String getOffset(long offset) {
67
67
*/
68
68
@ Override
69
69
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 );
71
71
}
72
72
73
73
/*
You can’t perform that action at this time.
0 commit comments