Skip to content

Commit 33ea296

Browse files
authored
fix: remove deepcopy while setting properties for _QueryResults (#2280)
1 parent 8a13c12 commit 33ea296

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google/cloud/bigquery/query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1400,7 +1400,7 @@ def _set_properties(self, api_response):
14001400
api_response (Dict): Response returned from an API call
14011401
"""
14021402
self._properties.clear()
1403-
self._properties.update(copy.deepcopy(api_response))
1403+
self._properties.update(api_response)
14041404

14051405

14061406
def _query_param_from_api_repr(resource):

0 commit comments

Comments
 (0)