Naohiro Yoshida
Naohiro Yoshida
Now I merged PR.
Now I published the new crate (version = 0.15.0).
@i10416 Thank you for your suggestion. I will consider using aws-sdk-rust as I do not wish to reinvent the wheel. @alu Thank you for your contribution. This crate is based...
Support for the bigquery emulator is incomplete. I have been running tests with the following, but have not tried jobs insert. https://github.com/yoshidan/google-cloud-rust/blob/2e2c08f08b92ffe8f33a70aac991a1a895704fb8/bigquery/src/client.rs#L1344
@ddimaria Unlike the GCP environment, emulator does not seem to return `kind` or `etag`. Therefore, it may work if you give `#[serde(default)]` or make it an `Option` type. [https://github.com/yoshidan/google-cloud-rust/blob/be801d66c5bde4cb62b3100e855baeace0cd2320/bigquery/src/http/job/get_query_ results.rs#L42](https://github.com/yoshidan/google-cloud-rust/blob/main/bigquery/src/http/job/get_query_results.rs#L42)
Sorry for the late reply. I think you probably can, but it will take some time to respond.
@danielnorberg Please fix the CI error. ``` Compiling google-cloud-spanner v0.32.0 (/home/runner/work/google-cloud-rust/google-cloud-rust/spanner) error[E0277]: the trait bound `std::option::Option: From` is not satisfied --> spanner/src/client.rs:388:35 | 388 | Ok(s) => Ok(s.into()), | ^^^^...
Thanks!
Please fix the CI error ``` error[E0277]: `?` couldn't convert the error to `error::Error` --> foundation/auth/src/token_source/external_account_source/mod.rs:92:56 | 92 | let it = response.json::().await?; | ^ the trait `From` is not...
The bigquery emulator is not supported because there is no official google emulator. Only pubsub and spanner are currently supported. The emulator you mentioned seems to be used frequently, so...