fix(snowflake): opt-in denormalization of column names (#24982)

This commit is contained in:
Ville Brofeldt
2023-08-15 16:32:54 -07:00
committed by GitHub
parent 0a8881b3c1
commit f94dc49fd0
23 changed files with 161 additions and 10 deletions

View File

@@ -53,7 +53,7 @@ def create_table_metadata(
table = get_table(table_name, database, schema)
if not table:
table = SqlaTable(schema=schema, table_name=table_name)
table = SqlaTable(schema=schema, table_name=table_name, normalize_columns=False)
if fetch_values_predicate:
table.fetch_values_predicate = fetch_values_predicate
table.database = database