dbt-duckdb
dbt-duckdb copied to clipboard
dbt (http://getdbt.com) adapter for DuckDB (http://duckdb.org)
Other DBT adapters return in their response a field containing the "rows affected" and outputs a log like: `[0 1 OK]` to indicate the number of rows that were affected...
Hi all! Thanks for this great tool! Following the demo https://github.com/mehd-io/dbt-duckdb-tutorial (creates a dbt-duckdb to process data from a public S3 bucket) I get the following error: 10:10:55 Running with...
My model utilizes the `read_json()` function to fetch JSON from an API like this: ```SQL WITH source AS ( SELECT * FROM read_json( 'https://url/?parameter={{ var("parameter") }}', auto_detect=true, format='auto', maximum_object_size=104857600 )...
When returning a DuckDB relation as a return type for my python model I get an error stating that the dataframe cannot be found ``` Catalog Error: Table with name...