Skip to content

Commit

Permalink
added new run_flow execution date_range options
Browse files Browse the repository at this point in the history
  • Loading branch information
jim-barlow committed Jun 17, 2024
1 parent b21b740 commit 09f2038
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion docs/reference/bqtools/functions/automation.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,21 @@ _**Dependencies**_ | `bqtools.[region].parse_resource_id`, `bqtools.[region].get
SET execution_options = JSON '{"execution_mode": "incremental", "replace_additional_date_partitions": 4}';
```

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

=== "Start Date Range"
```sql
SET execution_options = JSON '{"execution_mode": "date_range", "end_date": "2024-01-31"}';
```

=== "End Date Range"
```sql
SET execution_options = JSON '{"execution_mode": "date_range", "start_date": "2024-01-01"}';
```


??? note "DESTINATION TABLE OPTIONS"

Expand Down

0 comments on commit 09f2038

Please sign in to comment.