MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _row_limit_clause

Method _row_limit_clause

lib/sqlalchemy/sql/compiler.py:3237–3241  ·  view source on GitHub ↗
(self, cs, **kwargs)

Source from the content-addressed store, hash-verified

3235 return text
3236
3237 def _row_limit_clause(self, cs, **kwargs):
3238 if cs._fetch_clause is not None:
3239 return self.fetch_clause(cs, **kwargs)
3240 else:
3241 return self.limit_clause(cs, **kwargs)
3242
3243 def _get_operator_dispatch(self, operator_, qualifier1, qualifier2):
3244 attrname = "visit_%s_%s%s" % (

Callers 2

visit_compound_selectMethod · 0.95
_compose_select_bodyMethod · 0.95

Calls 2

fetch_clauseMethod · 0.95
limit_clauseMethod · 0.95

Tested by

no test coverage detected