()
| 442 | |
| 443 | |
| 444 | def test_is_destructive(): |
| 445 | sql = "use test;\nshow databases;\ndrop database foo;" |
| 446 | assert is_destructive(["drop"], sql) is True |
| 447 | |
| 448 | |
| 449 | def test_is_destructive_update_with_where_clause(): |
nothing calls this directly
no test coverage detected