Skip to content

Commit

Permalink
Add add_missing_columns option (#31)
Browse files Browse the repository at this point in the history
* add add_missing_columns option to snowflake target

* v1.5.29
  • Loading branch information
tanyshak authored Oct 18, 2023
1 parent 81ce523 commit bab7f41
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dbt/adapters/upsolver/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.5.28"
version = "1.5.29"
6 changes: 5 additions & 1 deletion dbt/adapters/upsolver/options/target_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@
"run_interval": {"type": "integer", "editable": False, "optional": True,
"syntax":"'run_interval': `'<N MINUTES/HOURS/DAYS>'`",
"description":"""How often the job runs.
The runs take place over a set period of time defined by this interval and they must be divisible by the number of hours in a day."""}
The runs take place over a set period of time defined by this interval and they must be divisible by the number of hours in a day."""},
"add_missing_columns": {"type": "boolean", "editable": False, "optional": True,
"syntax":"'add_missing_columns': True/False",
"description":"""When true, columns that don't exist in the target table are added automatically when encountered.
Default: false"""}
}
}

0 comments on commit bab7f41

Please sign in to comment.