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
Old ticket, but had the same problem recently, which caused by the Table schema having a field requirePartitionFilter with a default value of false. The JSON request sent to the BigQuery API then contains "requirePartitionFilter":false
which causes the error because the field should be present only if the table is partitioned. Modifying the request yo remove that field avoids the problem.
So fundamentally it's a problem with the BigQuery Table resource JSON schema definition.
If I try to create the above table using
tablesInsert
, I get an exception:But if I provide the
tabTimePartitioning
(commented out in code), it works fine and creates a partitioned table.Version: gogol-bigquery-0.4.0
The text was updated successfully, but these errors were encountered: