mik-laj edited a comment on issue #8645:
URL: https://github.com/apache/airflow/issues/8645#issuecomment-748085004
I was able to create tables with integer range partitioning.
```python
create_table = BigQueryCreateEmptyTableOperator(
task_id="create_table",
dataset_id="test_dataset",
table_id="test_airflow_table",
table_resource={
"rangePartitioning": {
"field": "my_int_field",
"range": {
"start": 1,
"end": 10000,
"interval": 100
}
},
"id": "new-range-partition-table",
"schema": {
"fields": [
{
"name": "my_int_field",
"type": "INTEGER",
"mode": "NULLABLE"
}
]
}
}
)
````


----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]