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
#189 moved LIMIT and OFFSET to use positional arguments. Unfortunately as per the bigquery documentation:
Note that a query can use positional or named parameters but not both.
This results in queries with named parameters and LIMIT/OFFSET resulting in googleapi: Error 400: named parameter and positional parameter cannot be used together, jobInternalError from the server where on v1.33.0 they succeeded.
#170 specifies that GoogleSQL is expected to be an alias of MySQL, but this appears to be a difference.
The text was updated successfully, but these errors were encountered:
There is a new flavor Doris in the latest version. It's basically an alias of MySQL except that it doesn't use parameters in LIMIT/OFFSET. You can try this flavor and let me know whether it works for you. If so, I can add another flavor BigQuery with the same settings like Doris for your case.
#189 moved LIMIT and OFFSET to use positional arguments. Unfortunately as per the bigquery documentation:
This results in queries with named parameters and LIMIT/OFFSET resulting in
googleapi: Error 400: named parameter and positional parameter cannot be used together, jobInternalError
from the server where on v1.33.0 they succeeded.#170 specifies that GoogleSQL is expected to be an alias of MySQL, but this appears to be a difference.
The text was updated successfully, but these errors were encountered: