(self, create, **kw)
| 7296 | ) |
| 7297 | |
| 7298 | def visit_set_table_comment(self, create, **kw): |
| 7299 | return "COMMENT ON TABLE %s IS %s" % ( |
| 7300 | self.preparer.format_table(create.element), |
| 7301 | self.sql_compiler.render_literal_value( |
| 7302 | create.element.comment, sqltypes.String() |
| 7303 | ), |
| 7304 | ) |
| 7305 | |
| 7306 | def visit_drop_table_comment(self, drop, **kw): |
| 7307 | return "COMMENT ON TABLE %s IS NULL" % self.preparer.format_table( |
nothing calls this directly
no test coverage detected