(cfg, eng, ident)
| 76 | |
| 77 | @drop_db.for_db("mssql") |
| 78 | def _mssql_drop_db(cfg, eng, ident): |
| 79 | with eng.connect().execution_options(isolation_level="AUTOCOMMIT") as conn: |
| 80 | _mssql_drop_ignore(conn, ident) |
| 81 | |
| 82 | |
| 83 | def _mssql_drop_ignore(conn, ident): |
nothing calls this directly
no test coverage detected