We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
/
IEEE_DIVIDE
else you can get a failure regarding divide by zero in the middle of your query execution
https://cloud.google.com/bigquery/docs/reference/standard-sql/functions-and-operators#special-cases-for-ieee_dividex-y
In [1]: import ibis In [2]: client = ibis.bigquery.connect('project_id', 'dataset_id') In [3]: client.raw_sql('select 1 / 0') --------------------------------------------------------------------------- BadRequest Traceback (most recent call last) <ipython-input-3-1e33b273ef6c> in <module>() ----> 1 client.raw_sql('select 1 / 0') ... BadRequest: 400 POST https://www.googleapis.com/bigquery/v2/projects/project_id/queries: division by zero In [4]: client.raw_sql('select IEEE_DIVIDE(1, 0)').fetchall() Out[4]: [(inf,)]
The text was updated successfully, but these errors were encountered:
Seems reasonable.
Sorry, something went wrong.
8192e6f
cpcloud
No branches or pull requests
else you can get a failure regarding divide by zero in the middle of your query execution
https://cloud.google.com/bigquery/docs/reference/standard-sql/functions-and-operators#special-cases-for-ieee_dividex-y
The text was updated successfully, but these errors were encountered: