Skip to content

fix: add warning when encountering unknown field types #1989

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Aug 13, 2024
Merged
Prev Previous commit
Next Next commit
fix: remove leftover debugging code
  • Loading branch information
suzmue committed Aug 3, 2024
commit f4e006f3676b1e54605a0a47ae43925e4dc00296
3 changes: 1 addition & 2 deletions tests/unit/test__helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -632,8 +632,7 @@ def _call_fut(self, row, schema):
from google.cloud.bigquery._helpers import _row_tuple_from_json

with _field_isinstance_patcher():
ret = _row_tuple_from_json(row, schema)
return ret
return _row_tuple_from_json(row, schema)

def test_w_single_scalar_column(self):
# SELECT 1 AS col
Expand Down