(self, collation_name)
| 8086 | return ident |
| 8087 | |
| 8088 | def format_collation(self, collation_name): |
| 8089 | if self.quote_case_sensitive_collations: |
| 8090 | return self.quote(collation_name) |
| 8091 | else: |
| 8092 | return collation_name |
| 8093 | |
| 8094 | def format_sequence( |
| 8095 | self, sequence: schema.Sequence, use_schema: bool = True |