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 @@ -2,6 +2,8 @@

## UNRELEASED

## 1.7.2, 2026-08-19

### Bug Fixes

- SQLAlchemy inspectors bound to an `Engine` can now call `get_columns()` and `reflect_table()` directly on SQLAlchemy 2.x. These methods now acquire and reuse one connection for each reflection operation, while inspectors already bound to a `Connection` continue to reuse it. Table reflection also honors positional `include_columns` and `exclude_columns` filters passed by SQLAlchemy instead of silently reflecting every column. Closes [#967](https://github.com/ClickHouse/clickhouse-connect/issues/967).
Expand Down
2 changes: 1 addition & 1 deletion clickhouse_connect/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.7.1"
version = "1.7.2"
Loading