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
I don't know if this is expected behaviour or if I'm doing something wrong, but I'm trying to migrate to using the SpannerAsyncClient API. When passing the params object to ExecuteSqlRequest, I get a parsing error if the values in params are not all strings. Is this expected behaviour? This wasn't the case with the high-level API.
On another note, values returned from queries are not their correct types even though the metadata lists their correct types.
Error:
google.api_core.exceptions.FailedPrecondition: 400 Could not parse number_value: 0
as INT64
I don't know if this is expected behaviour or if I'm doing something wrong, but I'm trying to migrate to using the SpannerAsyncClient API. When passing the params object to ExecuteSqlRequest, I get a parsing error if the values in params are not all strings. Is this expected behaviour? This wasn't the case with the high-level API.
On another note, values returned from queries are not their correct types even though the metadata lists their correct types.
Error:
Code:
The above works without error if
page_size
andstart_offset
are passed as strings instead of integers.The text was updated successfully, but these errors were encountered: