(self, expected_sql, dialect)
| 299 | ), |
| 300 | ) |
| 301 | def test_aggregate_strings_order_by(self, expected_sql, dialect): |
| 302 | t = table("t", column("value", String), column("ordering", String)) |
| 303 | stmt = select( |
| 304 | func.aggregate_strings(t.c.value, ",").aggregate_order_by( |
| 305 | t.c.ordering.desc() |
| 306 | ) |
| 307 | ) |
| 308 | |
| 309 | self.assert_compile( |
| 310 | stmt, expected_sql, dialect=dialect, render_postcompile=True |
| 311 | ) |
| 312 | |
| 313 | def test_cube_operators(self): |
| 314 | t = table( |
nothing calls this directly
no test coverage detected