MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / desc

Method desc

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

Source from the content-addressed store, hash-verified

2990 return self
2991
2992 def desc(self) -> OrderByList:
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])

Callers 11

test_order_by_listMethod · 0.95
descFunction · 0.45
test_plain_descMethod · 0.45
test_windowMethod · 0.45

Calls 1

OrderByListClass · 0.85

Tested by 10

test_order_by_listMethod · 0.76
test_plain_descMethod · 0.36
test_windowMethod · 0.36