MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / nulls_first

Method nulls_first

lib/sqlalchemy/sql/elements.py:2998–2999  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2996 return OrderByList([e.asc() for e in self.clauses])
2997
2998 def nulls_first(self) -> OrderByList:
2999 return OrderByList([e.nulls_first() for e in self.clauses])
3000
3001 def nulls_last(self) -> OrderByList:
3002 return OrderByList([e.nulls_last() for e in self.clauses])

Callers 11

test_order_by_listMethod · 0.95
nulls_firstFunction · 0.45
test_order_by_nullsMethod · 0.45
test_order_by_nullsMethod · 0.45
CoreFixturesClass · 0.45
operators.pyFile · 0.45
test_order_byMethod · 0.45
test_order_by_customMethod · 0.45

Calls 1

OrderByListClass · 0.85

Tested by 8

test_order_by_listMethod · 0.76
test_order_by_nullsMethod · 0.36
test_order_by_nullsMethod · 0.36
test_order_byMethod · 0.36
test_order_by_customMethod · 0.36