(self, drop, **kw)
| 7319 | ) |
| 7320 | |
| 7321 | def visit_drop_column_comment(self, drop, **kw): |
| 7322 | return "COMMENT ON COLUMN %s IS NULL" % self.preparer.format_column( |
| 7323 | drop.element, use_table=True |
| 7324 | ) |
| 7325 | |
| 7326 | def visit_set_constraint_comment(self, create, **kw): |
| 7327 | raise exc.UnsupportedCompilationError(self, type(create)) |
nothing calls this directly
no test coverage detected