(self, seq, **kw)
| 2295 | return f"power{self.function_argspec(fn)}" |
| 2296 | |
| 2297 | def visit_sequence(self, seq, **kw): |
| 2298 | return "nextval('%s')" % self.preparer.format_sequence(seq) |
| 2299 | |
| 2300 | def limit_clause(self, select, **kw): |
| 2301 | text = "" |
nothing calls this directly
no test coverage detected