We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I try to port the demo to work with my TPC-H from a local duckdb installation (I do not have a snowflake account and I am not interested).
I have setup duckdb (like in my other dbt project).
But I get
No macro named 'get_escape_characters' found within namespace: 'automate_dv'
Can you help me?
The text was updated successfully, but these errors were encountered:
On a second note I see that duckdb does not have code generation. But I try to add this. And even though I have some additions for the macros
e.g.
{%- macro duckdb__cast_date(column_str, as_string=false, alias=none) -%} {%- if as_string -%} '{{ column_str }}'::date {%- else -%} cast({{ column_str }} as string)::date {%- endif -%} {%- if alias %} AS {{ alias }} {%- endif %} {%- endmacro -%}
it still "prefers" the snowflake version.
How can I change this?
Sorry, something went wrong.
Datavault-UK/automate-dv#171
No branches or pull requests
Hi, I try to port the demo to work with my TPC-H from a local duckdb installation (I do not have a snowflake account and I am not interested).
I have setup duckdb (like in my other dbt project).
But I get
Can you help me?
The text was updated successfully, but these errors were encountered: