(self, drop, **kw)
| 7034 | ) |
| 7035 | |
| 7036 | def visit_drop_column_comment(self, drop, **kw): |
| 7037 | return "COMMENT ON COLUMN %s IS NULL" % self.preparer.format_column( |
| 7038 | drop.element, use_table=True |
| 7039 | ) |
| 7040 | |
| 7041 | def visit_set_constraint_comment(self, create, **kw): |
| 7042 | raise exc.UnsupportedCompilationError(self, type(create)) |
nothing calls this directly
no test coverage detected