File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ The supported method of passing ClickHouse server settings is to prefix such arg
2424## UNRELEASED
2525
2626### Bug Fixes
27+ - Fix issue with DROP table in client temp table test.
2728
2829### Improvements
2930- Add support for QBit data type. Closes [ #570 ] ( https://github.com/ClickHouse/clickhouse-connect/issues/570 )
Original file line number Diff line number Diff line change @@ -234,7 +234,7 @@ def test_temporary_tables(test_client: Client):
234234 test_client .insert_df ('temp_test_table' , df , settings = session_settings )
235235 df = test_client .query_df ('SELECT * FROM temp_test_table' , settings = session_settings )
236236 assert len (df ['field1' ]) == 4
237- test_client .command ('DROP TABLE temp_test_table' , settings = session_settings )
237+ test_client .command ('DROP TABLE IF EXISTS temp_test_table' , settings = session_settings )
238238
239239
240240def test_str_as_bytes (test_client : Client , table_context : Callable ):
You can’t perform that action at this time.
0 commit comments