()
| 42 | |
| 43 | |
| 44 | def test_extract_columns_from_select_update(): |
| 45 | columns = extract_columns_from_select('UPDATE table SET value = 1 WHERE id = 1') |
| 46 | assert columns == [] |
| 47 | |
| 48 | |
| 49 | def test_empty_string(): |
nothing calls this directly
no test coverage detected