We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2027570 commit 4f0f780Copy full SHA for 4f0f780
clickhouse_connect/driver/client.py
@@ -961,7 +961,7 @@ def create_insert_context(self,
961
full_table = quote_identifier(table)
962
column_defs = []
963
if column_types is None and column_type_names is None:
964
- describe_result = self.query(f'DESCRIBE TABLE {full_table}')
+ describe_result = self.query(f'DESCRIBE TABLE {full_table}', settings=settings)
965
column_defs = [ColumnDef(**row) for row in describe_result.named_results()
966
if row['default_type'] not in ('ALIAS', 'MATERIALIZED')]
967
if column_names is None or isinstance(column_names, str) and column_names == '*':
0 commit comments