At a simple BQ load some CSVs to a new schema using this cmd we get the below error:
bq load --time_partitioning_field saved_timestamp
--skip_leading_rows=1 --max_bad_records=100 --allow_jagged_rows
--replace --source_format=CSV --ignore_unknown_values TABLE gs://.../export*.gz schema.json
Incompatible table partitioning specification. Expects partitioning specification none, but input partitioning specification is interval(type:day,field:saved_timestamp)
My expectation would be to create a column type partitioning column. What's wrong?
Also can we use the same syntax to specify Clustering?