You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix generating appropriate syntax for OFFSET/LIMIT clauses
The standard SQLAlchemy statements compiler can generate `LIMIT -1`
clauses, but PostgreSQL and CrateDB do not accept them, and need
`LIMIT ALL` instead.
The fix is to re-use the existing `PGCompiler.limit_clause` method
within `CrateCompiler`.
0 commit comments