(self)
| 548 | self.assert_compile(ct, "CURRENT_TIMESTAMP(:current_timestamp_1)") |
| 549 | |
| 550 | def test_char_length_fixed_args(self): |
| 551 | assert_raises(TypeError, func.char_length, "a", "b") |
| 552 | assert_raises(TypeError, func.char_length) |
| 553 | |
| 554 | def test_return_type_detection(self): |
| 555 | for fn in [func.coalesce, func.max, func.min, func.sum]: |
nothing calls this directly
no test coverage detected