Add a warning in the type mapping if no conversion function is found #1988
Labels
api: bigquery
Issues related to the googleapis/python-bigquery API.
priority: p2
Moderately-important priority. Fix may not be included in next release.
type: feature request
‘Nice-to-have’ improvement, new feature or different behavior or design.
Is your feature request related to a problem? Please describe.
Unsupported types are silently handled in order to allow for tables with column types the client library cannot handle yet. Once these types are supported, the returned type for the column is likely to change to reflect the correct handling of the type. However, this may require different code to handle from the user.
See #1587 for an example when support for json values was added.
Describe the solution you'd like
Add a warning to the type mapping when the type does not have a conversion function, since the handling for this type may change:
python-bigquery/google/cloud/bigquery/_helpers.py
Line 385 in 4383cfe
The text was updated successfully, but these errors were encountered: