(self)
| 349 | ) |
| 350 | |
| 351 | def test_generic_annotation(self): |
| 352 | fn = func.coalesce("x", "y")._annotate({"foo": "bar"}) |
| 353 | self.assert_compile(fn, "coalesce(:coalesce_1, :coalesce_2)") |
| 354 | |
| 355 | def test_annotation_dialect_specific(self): |
| 356 | fn = func.current_date() |
nothing calls this directly
no test coverage detected