(self, expected_sql, dialect)
| 260 | ), |
| 261 | ) |
| 262 | def test_aggregate_strings(self, expected_sql, dialect): |
| 263 | t = table("t", column("value", String)) |
| 264 | stmt = select(func.aggregate_strings(t.c.value, ",")) |
| 265 | |
| 266 | self.assert_compile( |
| 267 | stmt, expected_sql, dialect=dialect, render_postcompile=True |
| 268 | ) |
| 269 | |
| 270 | @testing.combinations( |
| 271 | ( |
nothing calls this directly
no test coverage detected