dbt_workspace
dbt_workspace copied to clipboard
Copy Into Materialization Documentation and Feature Additions
This PR has a few additions and one change:
-
Changes:
- Added a config to the copy into materialization to handle
ON_ERRORin the SnowflakeCOPY_INTOcommand- The behavior for the config is the following:
- if a
copy_into_on_errorconfiguration is set in a model like'skip_file'or'abort_statement', it will be added into theON_ERRORclause in the copy into statement, when the given model is run - if no
copy_into_on_errorconfiguration is set, it will run the copy into statement without aON_ERRORclause - See file
dbt/models/demos/snowflake_copy_into/copy_into_demo.sqlfor an example of using this configuration in a model
- if a
- The behavior for the config is the following:
- Added a config to the copy into materialization to handle
-
Additions - Documentation Changes Only:
- The file
dbt/models/demos/snowflake_copy_into/documentation/copy_into_instructions.mdis detailed markdown document on how to use the copy into materialization - The file
dbt/models/demos/snowflake_copy_into/copy_into_demo.sqlserves as a referenced example in the markdown file on how to configure a model using the copy into materialization - The file
dbt/models/demos/snowflake_copy_into/copy_into_demo_src.ymlalso serves as a referenced example in the markdown file on how to configure a source yaml file for an external stage when using the copy into materialization - The following files are pictures used in the documentation:
-
dbt/models/demos/snowflake_copy_into/documentation/doc_pics/Untitled.png -
dbt/models/demos/snowflake_copy_into/documentation/doc_pics/Untitled 1.png -
dbt/models/demos/snowflake_copy_into/documentation/doc_pics/Untitled 2.png -
dbt/models/demos/snowflake_copy_into/documentation/doc_pics/Untitled 3.png -
dbt/models/demos/snowflake_copy_into/documentation/doc_pics/Untitled 4.png -
dbt/models/demos/snowflake_copy_into/documentation/doc_pics/Untitled 5.png -
dbt/models/demos/snowflake_copy_into/documentation/doc_pics/Untitled 6.png -
dbt/models/demos/snowflake_copy_into/documentation/doc_pics/Untitled 7.png
-
- The file