You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I could not find a way to use SAFE_CAST which returns NULL if the cast fails rather than failing the query.
Describe the solution you'd like
A custom safe_cast function provided by the library that compiles to SAFE_CAST.
Describe alternatives you've considered
I can implement a custom safe_cast function within my codebase. But, I would have to subclass sqlalchemy.sql.Cast (say SafeCast) and override the visit_cast function in the bigquery dialect to compile SafeCast into SAFE_CAST(...) instead of `CAST(...).
Is your feature request related to a problem? Please describe.
I could not find a way to use SAFE_CAST which returns NULL if the cast fails rather than failing the query.
Describe the solution you'd like
A custom
safe_cast
function provided by the library that compiles toSAFE_CAST
.Describe alternatives you've considered
I can implement a custom
safe_cast
function within my codebase. But, I would have to subclasssqlalchemy.sql.Cast
(saySafeCast
) and override thevisit_cast
function in the bigquery dialect to compileSafeCast
intoSAFE_CAST(...)
instead of `CAST(...).Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: