From 3d05eec17d4b8f87fc35458b6c54f0278f237383 Mon Sep 17 00:00:00 2001 From: liferoad Date: Mon, 17 Jun 2024 19:35:53 -0400 Subject: [PATCH] Update bigquery.py (#31620) Fixed this rendering issue --- sdks/python/apache_beam/io/gcp/bigquery.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sdks/python/apache_beam/io/gcp/bigquery.py b/sdks/python/apache_beam/io/gcp/bigquery.py index 29b7b575932d..e1c509d0e490 100644 --- a/sdks/python/apache_beam/io/gcp/bigquery.py +++ b/sdks/python/apache_beam/io/gcp/bigquery.py @@ -296,13 +296,12 @@ def chain_after(result): | MyOperationAfterWriteToBQ()) Attributes can be accessed using dot notation or bracket notation: -``` + result.failed_rows <--> result['FailedRows'] result.failed_rows_with_errors <--> result['FailedRowsWithErrors'] result.destination_load_jobid_pairs <--> result['destination_load_jobid_pairs'] result.destination_file_pairs <--> result['destination_file_pairs'] result.destination_copy_jobid_pairs <--> result['destination_copy_jobid_pairs'] -``` Writing with Storage Write API using Cross Language ---------------------------------------------------