-
-
Notifications
You must be signed in to change notification settings - Fork 150
Open
Labels
bugSomething isn't workingSomething isn't working
Description
What happened?
POST to /bigquery/v2/projects/{projectId}/datasets/{datasetId}/tables/{tableId}
results in 500 Internal Server Error with message
"unexpected request path: /bigquery/v2/projects/{projectId}/datasets/{datasetId}/tables/{tableId} "
What did you expect to happen?
Table updated sucessfully.
How can we reproduce it (as minimally and precisely as possible)?
Using Java BQ API:
final TableId tableId = TableId.of("test-project", "test-dataset", "test-table");
final Table table = bigQuery.getTable(tableId);
table.toBuilder()
.setExpirationTime(7)
.build()
.update();Anything else we need to know?
No response
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working