Skip to content

Commit

Permalink
Oracle limitN wrapper条件修正
Browse files Browse the repository at this point in the history
  • Loading branch information
coolbreeze committed Jan 18, 2024
1 parent 761ab8a commit 2655110
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 2655110

Please sign in to comment.