File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ v0.3.x has incompatibility changes with v0.2.x. Please see [CHANGELOG.md](CHANGE
47
47
| location | string | optional | nil | geographic location of dataset. See [ Location] ( #location ) |
48
48
| table | string | required | | table name, or table name with a partition decorator such as ` table_name$20160929 ` |
49
49
| auto_create_dataset | boolean | optional | false | automatically create dataset |
50
- | auto_create_table | boolean | optional | false | See [ Dynamic Table Creating] ( #dynamic-table-creating ) |
50
+ | auto_create_table | boolean | optional | false | See [ Dynamic Table Creating] ( #dynamic-table-creating ) and [ Time Partitioning ] ( #time-partitioning ) |
51
51
| schema_file | string | optional | | /path/to/schema.json |
52
52
| template_table | string | optional | | template table name. See [ Dynamic Table Creating] ( #dynamic-table-creating ) |
53
53
| prevent_duplicate_insert | boolean | optional | false | See [ Prevent Duplication] ( #prevent-duplication ) |
@@ -250,9 +250,10 @@ out:
250
250
251
251
# ## Dynamic table creating
252
252
253
- When `auto_create_table` is set to true, try to create the table using BigQuery API.
253
+ This plugin tries to create a table using BigQuery API when
254
254
255
- If table already exists, insert into it.
255
+ * mode is either of `delete_in_advance`, `replace`, `replace_backup`, `append`.
256
+ * mode is `append_direct` and `auto_create_table` is true.
256
257
257
258
There are 3 ways to set schema.
258
259
You can’t perform that action at this time.
0 commit comments