target dialect supports 'AUTOCOMMIT' as an isolation_level
(self)
| 476 | |
| 477 | @property |
| 478 | def autocommit(self): |
| 479 | """target dialect supports 'AUTOCOMMIT' as an isolation_level""" |
| 480 | |
| 481 | return self.isolation_level + only_if( |
| 482 | lambda config: "AUTOCOMMIT" |
| 483 | in self.get_isolation_levels(config)["supported"] |
| 484 | ) |
| 485 | |
| 486 | @property |
| 487 | def skip_autocommit_rollback(self): |
nothing calls this directly
no test coverage detected