Skip to content

Commit 09f2038

Browse files
committed
added new run_flow execution date_range options
1 parent b21b740 commit 09f2038

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

docs/reference/bqtools/functions/automation.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,21 @@ _**Dependencies**_ | `bqtools.[region].parse_resource_id`, `bqtools.[region].get
8080
SET execution_options = JSON '{"execution_mode": "incremental", "replace_additional_date_partitions": 4}';
8181
```
8282

83-
=== "Date Range"
83+
=== "Full Date Range"
8484
```sql
8585
SET execution_options = JSON '{"execution_mode": "date_range", "start_date": "2024-01-01", "end_date": "2024-01-31"}';
8686
```
8787

88+
=== "Start Date Range"
89+
```sql
90+
SET execution_options = JSON '{"execution_mode": "date_range", "end_date": "2024-01-31"}';
91+
```
92+
93+
=== "End Date Range"
94+
```sql
95+
SET execution_options = JSON '{"execution_mode": "date_range", "start_date": "2024-01-01"}';
96+
```
97+
8898

8999
??? note "DESTINATION TABLE OPTIONS"
90100

0 commit comments

Comments
 (0)