(self, sequence, create_ok=False)
| 1052 | AddConstraint(constraint)._invoke_with(self.connection) |
| 1053 | |
| 1054 | def visit_sequence(self, sequence, create_ok=False): |
| 1055 | if not create_ok and not self._can_create_sequence(sequence): |
| 1056 | return |
| 1057 | with self.with_ddl_events(sequence): |
| 1058 | CreateSequence(sequence)._invoke_with(self.connection) |
| 1059 | |
| 1060 | def visit_index(self, index, create_ok=False): |
| 1061 | if not create_ok and not self._can_create_index(index): |
nothing calls this directly
no test coverage detected