Skip to content

Commit

Permalink
Import jobs can now optionally add columns
Browse files Browse the repository at this point in the history
  • Loading branch information
juanpardo committed Jan 5, 2024
1 parent e909a2f commit 2b042b0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ Changes for croud
Unreleased
==========

- Import jobs can now optionally add columns to the schema if the `create_table`
parameter is set to `true`.

1.10.0 - 2023/12/21
===================

Expand Down
3 changes: 2 additions & 1 deletion croud/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,8 @@
type=lambda x: bool(strtobool(str(x))), # noqa
required=False,
help="Whether the table should be created automatically"
" if it does not exist.",
" if it does not exist. If true new columns will also be added when the data"
" requires them.",
),
Argument(
"--transformations",
Expand Down

0 comments on commit 2b042b0

Please sign in to comment.