(self)
| 544 | self.assert_compile(func.count(c), "count(abc)") |
| 545 | |
| 546 | def test_ansi_functions_with_args(self): |
| 547 | ct = func.current_timestamp("somearg") |
| 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") |
nothing calls this directly
no test coverage detected