(cfg, eng, ident)
| 87 | |
| 88 | @drop_db.for_db("mysql", "mariadb") |
| 89 | def _mysql_drop_db(cfg, eng, ident): |
| 90 | with eng.begin() as conn: |
| 91 | conn.exec_driver_sql("DROP DATABASE %s_test_schema" % ident) |
| 92 | conn.exec_driver_sql("DROP DATABASE %s_test_schema_2" % ident) |
| 93 | conn.exec_driver_sql("DROP DATABASE %s" % ident) |
| 94 | |
| 95 | |
| 96 | @temp_table_keyword_args.for_db("mysql", "mariadb") |
no test coverage detected