Skip to content

Commit

Permalink
Merge pull request #472 from kestra-io/fix/duckdb_doc
Browse files Browse the repository at this point in the history
Update DuckDB documentation
  • Loading branch information
Ben8t authored Dec 23, 2024
2 parents 89f8f34 + 0a6795b commit 72c8eff
Showing 1 changed file with 0 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,27 +63,6 @@
inputFiles:
in.csv: "{{ outputs.http_download.uri }}"
"""
),
@Example(
title = "Execute queries that reads from an existing database file using a URL.",
full = true,
code = """
id: query_duckdb
namespace: company.team
tasks:
- id: query1
type: io.kestra.plugin.jdbc.duckdb.Query
url: jdbc:duckdb:/{{ vars.dbfile }}
sql: SELECT * FROM table1_name; SELECT * FROM table2_name;
fetchType: STORE
- id: query2
type: io.kestra.plugin.jdbc.duckdb.Query
url: jdbc:duckdb:/temp/folder/duck.db
sql: SELECT * FROM table1_name; SELECT * FROM table2_name;
fetchType: STORE
"""
)
}
)
Expand Down

0 comments on commit 72c8eff

Please sign in to comment.