MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / asc

Method asc

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

Source from the content-addressed store, hash-verified

2993 return OrderByList([e.desc() for e in self.clauses])
2994
2995 def asc(self) -> OrderByList:
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])

Callers 14

test_order_by_listMethod · 0.95
ascFunction · 0.45
test_collate_order_byMethod · 0.45
test_window_rangeMethod · 0.45
CoreFixturesClass · 0.45
operators.pyFile · 0.45
test_basicMethod · 0.45
descMethod · 0.45
test_order_byMethod · 0.45

Calls 1

OrderByListClass · 0.85

Tested by 11

test_order_by_listMethod · 0.76
test_collate_order_byMethod · 0.36
test_window_rangeMethod · 0.36
test_basicMethod · 0.36
descMethod · 0.36
test_order_byMethod · 0.36
test_indexes_asc_descMethod · 0.36