fix(ingest): bigquery - Not setting ge config schema when profiling with temp table (#5737)

This commit is contained in:
Tamas Nemeth 2022-08-26 13:32:44 +02:00 committed by GitHub
parent c979349c65
commit a251625d04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -874,7 +874,7 @@ class DatahubGEProfiler:
if profiler_args is not None:
temp_table_db = profiler_args.get("temp_table_db", schema)
if platform is not None and platform == "bigquery":
ge_config["schema"] = temp_table_db
ge_config["schema"] = None
if self.config.bigquery_temp_table_schema:
num_parts = self.config.bigquery_temp_table_schema.split(".")