From 0a6795b4bface9857ce23f312b6421d9d316788e Mon Sep 17 00:00:00 2001 From: ben8t <46634684+Ben8t@users.noreply.github.com> Date: Mon, 23 Dec 2024 16:19:43 +0100 Subject: [PATCH] remove non related example --- .../io/kestra/plugin/jdbc/duckdb/Queries.java | 21 ------------------- 1 file changed, 21 deletions(-) diff --git a/plugin-jdbc-duckdb/src/main/java/io/kestra/plugin/jdbc/duckdb/Queries.java b/plugin-jdbc-duckdb/src/main/java/io/kestra/plugin/jdbc/duckdb/Queries.java index 414c529a..cfc02dca 100644 --- a/plugin-jdbc-duckdb/src/main/java/io/kestra/plugin/jdbc/duckdb/Queries.java +++ b/plugin-jdbc-duckdb/src/main/java/io/kestra/plugin/jdbc/duckdb/Queries.java @@ -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 - """ ) } )