MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / aggregate_order_by

Method aggregate_order_by

test/requirements.py:1218–1233  ·  view source on GitHub ↗

target database can use ORDER BY or equivalent in an aggregate function, and dialect supports aggregate_order_by().

(self)

Source from the content-addressed store, hash-verified

1216
1217 @property
1218 def aggregate_order_by(self):
1219 """target database can use ORDER BY or equivalent in an aggregate
1220 function, and dialect supports aggregate_order_by().
1221
1222 """
1223
1224 return only_on(
1225 [
1226 "postgresql",
1227 "sqlite >= 3.44.0",
1228 "mysql",
1229 "mariadb",
1230 "oracle",
1231 "mssql",
1232 ]
1233 )
1234
1235 @property
1236 def tuple_valued_builtin_functions(self):

Calls 1

only_onFunction · 0.90