Raminder Singh
Raminder Singh
You can start with unit tests and later add integration tests with actual chess engines.
Thanks 👍. Merged.
The error occurs because the `api_key_id` options should be set to the value of the `key_id` column of the `vault.secrets` table, not the `id` column. Since you want to create...
Thanks @vickkhera for the suggestion to use `name` instead of `key_id`. I agree that it would make it easier to manage secrets if they are referenced by `name`. I don't...
@olirice Hard to say if it's `pg_graphql` or `wrappers` without more info, although if it occurs only with a foreign table then `wrappers` is likely involved. 18446744073709551615 is 2^64 -...
@thomtrp thanks for the information. Stripe's non-numeric ids are unlikely to be the cause. The fact that it works fine with `postgres_fdw` indicates it might be the Stripe wrapper might...
@lquerel Thanks for publishing the new version. I have cleaned up this PR's code and it compiles. Looking at why tests and clippy are failing.
Looks like clippy and tests failed because protoc is missing: https://github.com/lquerel/gcp-bigquery-client/actions/runs/9835163714/job/27148284036?pr=97#step:5:406. I'm not sure why it wasn't a problem before.
Tests and clippy are fixed in https://github.com/lquerel/gcp-bigquery-client/pull/98. Once that PR is merged, this one should be green.
@lquerel since now the protoc deps have been vendored, would you mind taking a look at this PR. The clippy failure has been fixed in PR #105, but the tests...