Skip to content

Commit

Permalink
feat: convert BIGNUMERIC values to decimal objects
Browse files Browse the repository at this point in the history
Towards #367
  • Loading branch information
tswast committed Dec 3, 2020
1 parent f421058 commit c377219
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions google/cloud/bigquery/_helpers.py
Expand Up @@ -188,6 +188,7 @@ def _record_from_json(value, field):
"FLOAT": _float_from_json,
"FLOAT64": _float_from_json,
"NUMERIC": _decimal_from_json,
"BIGNUMERIC": _decimal_from_json,
"BOOLEAN": _bool_from_json,
"BOOL": _bool_from_json,
"STRING": _string_from_json,
Expand Down

0 comments on commit c377219

Please sign in to comment.