Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ The supported method of passing ClickHouse server settings is to prefix such arg

## UNRELEASED
### Bug Fixes
- Fix issue with DROP table in client temp table test.

### Improvements

## 0.10.0, 2025-11-14
Expand Down
2 changes: 1 addition & 1 deletion tests/integration_tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def test_temporary_tables(test_client: Client):
test_client.insert_df('temp_test_table', df, settings=session_settings)
df = test_client.query_df('SELECT * FROM temp_test_table', settings=session_settings)
assert len(df['field1']) == 4
test_client.command('DROP TABLE temp_test_table', settings=session_settings)
test_client.command('DROP TABLE IF EXISTS temp_test_table', settings=session_settings)


def test_str_as_bytes(test_client: Client, table_context: Callable):
Expand Down