When Creating a new empty partitioned table schema in Big Query Web GUI, you can SET the Require Partition filter Option.
How can I set the same option when creating a table using bq command-line tool. Right now my command is:
bq mk --table --time_partitioning_field event_time my_dataset.events event_id:INTEGER,event_time:TIMESTAMP
The command successfully creates the Partitioned Table, but I have not seen a flag for setting the Require Partition filter.
How can I edit the Option later after creating the table?