Skip to content

Commit

Permalink
fix #18
Browse files Browse the repository at this point in the history
  • Loading branch information
grongierisc authored Dec 5, 2024
1 parent 8abd35c commit bef249b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlalchemy_iris/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ def translate_select_structure(self, select_stmt, **kwargs):
if limit_clause is not None:
limitselect = limitselect.where(
between(iris_rn, offset_clause + 1, limit_clause + offset_clause)
)
).order_by(iris_rn)
else:
limitselect = limitselect.where(iris_rn > offset_clause)
else:
Expand Down

0 comments on commit bef249b

Please sign in to comment.