()
| 32 | |
| 33 | |
| 34 | def test_extract_columns_from_select(): |
| 35 | columns = extract_columns_from_select('SELECT COLUMN_NAME, DATA_TYPE, IS_NULLABLE, COLUMN_DEFAULT FROM INFORMATION_SCHEMA.COLUMNS') |
| 36 | assert columns == ['COLUMN_NAME', 'DATA_TYPE', 'IS_NULLABLE', 'COLUMN_DEFAULT'] |
| 37 | |
| 38 | |
| 39 | def test_extract_columns_from_select_empty(): |
nothing calls this directly
no test coverage detected