claudevdm commented on code in PR #32780:
URL: https://github.com/apache/beam/pull/32780#discussion_r1801738797


##########
sdks/python/apache_beam/transforms/enrichment_handlers/bigquery.py:
##########
@@ -194,14 +202,16 @@ def __call__(self, request: Union[beam.Row, 
List[beam.Row]], *args, **kwargs):
               "Make sure the values passed in `fields` are the "
               "keys in the input `beam.Row`." + str(e))
         values.extend(current_values)
-        requests_map.update((val, req) for val in current_values)
+        requests_map.update(
+            (self.create_row_key(req), req) for val in current_values)

Review Comment:
   Ah good point



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@beam.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to