(self)
| 292 | ) |
| 293 | |
| 294 | def test_generic_annotation(self): |
| 295 | fn = func.coalesce("x", "y")._annotate({"foo": "bar"}) |
| 296 | self.assert_compile(fn, "coalesce(:coalesce_1, :coalesce_2)") |
| 297 | |
| 298 | def test_annotation_dialect_specific(self): |
| 299 | fn = func.current_date() |
nothing calls this directly
no test coverage detected