True if the clause is a simple integer, False if it is not present or is a SQL expression.
(self, clause: ClauseElement)
| 4303 | return self._offset_or_limit_clause_asint(self._limit_clause, "limit") |
| 4304 | |
| 4305 | def _simple_int_clause(self, clause: ClauseElement) -> bool: |
| 4306 | """True if the clause is a simple integer, False |
| 4307 | if it is not present or is a SQL expression. |
| 4308 | """ |
| 4309 | return isinstance(clause, _OffsetLimitParam) |
| 4310 | |
| 4311 | @property |
| 4312 | def _offset(self) -> Optional[int]: |
no outgoing calls
no test coverage detected