(executor, exception_formatter)
| 245 | |
| 246 | @dbtest |
| 247 | def test_invalid_column_name(executor, exception_formatter): |
| 248 | result = run(executor, "select invalid command", exception_formatter=exception_formatter) |
| 249 | assert 'column "invalid" does not exist' in result[0] |
| 250 | |
| 251 | |
| 252 | @pytest.fixture(params=[True, False]) |