(self, typeclause, **kw)
| 2745 | return index.name |
| 2746 | |
| 2747 | def visit_typeclause(self, typeclause, **kw): |
| 2748 | kw["type_expression"] = typeclause |
| 2749 | kw["identifier_preparer"] = self.preparer |
| 2750 | return self.dialect.type_compiler_instance.process( |
| 2751 | typeclause.type, **kw |
| 2752 | ) |
| 2753 | |
| 2754 | def post_process_text(self, text): |
| 2755 | if self.preparer._double_percents: |