Skip to content

Commit 8da0e8b

Browse files
Merge branch 'main' into joe/570-support-qbit-data-type-2510
2 parents 32c723a + 29dfd78 commit 8da0e8b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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)

tests/integration_tests/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

240240
def test_str_as_bytes(test_client: Client, table_context: Callable):

0 commit comments

Comments
 (0)