Skip to content

Commit

Permalink
!843 Oracle limitN wrapper条件修正
Browse files Browse the repository at this point in the history
Merge pull request !843 from Cool_Breeze/master
  • Loading branch information
YunaiV authored and gitee-org committed Jan 20, 2024
2 parents 34bdf00 + 2655110 commit 9572fef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public QueryWrapperX<T> limitN(int n) {
switch (SqlConstants.DB_TYPE) {
case ORACLE:
case ORACLE_12C:
super.eq("ROWNUM", n);
super.le("ROWNUM", n);
break;
case SQL_SERVER:
case SQL_SERVER2005:
Expand Down

0 comments on commit 9572fef

Please sign in to comment.