(self, table, where, using)
| 20 | compiler = "SQLDeleteCompiler" |
| 21 | |
| 22 | def do_query(self, table, where, using): |
| 23 | self.alias_map = {table: self.alias_map[table]} |
| 24 | self.where = where |
| 25 | return self.get_compiler(using).execute_sql(ROW_COUNT) |
| 26 | |
| 27 | def delete_batch(self, pk_list, using): |
| 28 | """ |
no test coverage detected