Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion sdks/python/apache_beam/io/gcp/bigquery_file_loads.py
Original file line number Diff line number Diff line change
Expand Up @@ -1166,7 +1166,10 @@ def _load_data(
else:
# Loads can happen in parallel.
finished_temp_tables_load_job_ids_list_pc = (
finished_temp_tables_load_job_ids_pc | beam.Map(lambda x: [x]))
finished_temp_tables_load_job_ids_pc
# This name is to ensure update compat.
| "Map(<lambda at bigquery_file_loads.py:1157>)" >>
beam.Map(lambda x: [x]))

copy_job_outputs = (
finished_temp_tables_load_job_ids_list_pc
Expand Down
Loading