Skip to content

Commit

Permalink
feat(clickhouse): add ability to pass arbitrary kwargs to Clickhouse …
Browse files Browse the repository at this point in the history
…do_connect
  • Loading branch information
mharrisb1 authored and cpcloud committed Jul 21, 2022
1 parent 51be9ef commit 583f599
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ibis/backends/clickhouse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ def do_connect(
compression: (
Literal["lz4", "lz4hc", "quicklz", "zstd"] | bool
) = _default_compression,
**kwargs: Any,
):
"""Create a ClickHouse client for use with Ibis.
Expand Down Expand Up @@ -89,6 +90,7 @@ def do_connect(
password=password,
client_name=client_name,
compression=compression,
**kwargs,
)

@property
Expand Down

0 comments on commit 583f599

Please sign in to comment.