Skip to content

Commit

Permalink
Merge pull request #277 from littlebtc/patch-column-reflection-c
Browse files Browse the repository at this point in the history
Fix column reflection in SQLAlchemy 2.0
  • Loading branch information
xzkostyan authored Dec 8, 2023
2 parents a5390b9 + aabd691 commit 5d25149
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions clickhouse_sqlalchemy/sql/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ def _make_from_standard(cls, std_table, _extend_on=None):
if _extend_on is None:
ch_table._columns = std_table._columns
ch_table.columns = std_table.columns
ch_table.c = std_table.c

return ch_table

Expand Down

0 comments on commit 5d25149

Please sign in to comment.