amoeba commented on issue #3487:
URL: https://github.com/apache/arrow-adbc/issues/3487#issuecomment-3339720903
Hrm, this is even higher up the stack. Here's the request which shows the
underlying driver propagates my input verbatim:
```json
{
"configuration": {
"query": {
"createSession": true,
"defaultDataset": {
"datasetId": "bigquery-public-data",
"projectId": "my_example"
},
"query": "SELECT 1",
"useLegacySql": false
}
},
"jobReference": {
"jobId": "x1dHEASM9kIthKxW0aFBAyUczvs",
"projectId": "my_example"
}
}
```
And the response indicates it's actually their backend that has the bug:
```json
{
"error": {
"code": 400,
"message": "ProjectId must be non-empty",
"errors": [
{
"message": "ProjectId must be non-empty",
"domain": "global",
"reason": "badRequest"
}
],
"status": "INVALID_ARGUMENT"
}
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]