(self, sequence, create_ok=False)
| 1508 | ) |
| 1509 | |
| 1510 | def visit_sequence(self, sequence, create_ok=False): |
| 1511 | if not create_ok and not self._can_create_sequence(sequence): |
| 1512 | return |
| 1513 | with self.with_ddl_events(sequence): |
| 1514 | CreateSequence(sequence)._invoke_with(self.connection) |
| 1515 | |
| 1516 | def visit_index(self, index, create_ok=False): |
| 1517 | if not create_ok and not self._can_create_index(index): |
nothing calls this directly
no test coverage detected