-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Snowflake: Add expression parameter to columns #209
Conversation
Allows for an optional `expression` key given under `column`. When given, column.expression is passed to `{{column_quoted}} {{column.data_type}} as ({{col_expression}}::{{column.data_type}})` instead of ```{%- set col_id = 'value:c' ~ loop.index if is_csv else 'value:' ~ column_quoted -%} (case when is_null_value({{col_id}}) or lower({{col_id}}) = 'null' then null else {{col_id}} end) ```
This would be such a great addition! |
We are eagerly awaiting this PR. This will fix the issue when a source field is named |
@jeremyyeo, any update on this? |
Hey folks - we'll try to get this merged this week. |
Any update on this? we would really love to have this feature included in the package |
This PR has been marked as Stale because it has been open with no activity as of late. If you would like the PR to remain open, please comment on the PR or else it will be closed in 7 days. |
yes, what is the hesitation to merging this? |
are there plans to add tests for this pr? |
@jeremyyeo is there any update on merging this? |
closing in favor of #275 |
Description & motivation
resolves: #140
Checklist