(self, collation_name)
| 7849 | return ident |
| 7850 | |
| 7851 | def format_collation(self, collation_name): |
| 7852 | if self.quote_case_sensitive_collations: |
| 7853 | return self.quote(collation_name) |
| 7854 | else: |
| 7855 | return collation_name |
| 7856 | |
| 7857 | def format_sequence( |
| 7858 | self, sequence: schema.Sequence, use_schema: bool = True |