Skip to content

Commit

Permalink
CB-4487 add duckdb driver
Browse files Browse the repository at this point in the history
  • Loading branch information
yagudin10 committed Jan 9, 2024
1 parent e08f6b3 commit a5f9065
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<extension point="org.jkiss.dbeaver.resources">
<resource name="drivers/db2"/>
<resource name="drivers/db2-jt400"/>
<resource name="drivers/duckdb"/>
<resource name="drivers/mysql/mysql8"/>
<resource name="drivers/mariadb"/>
<resource name="drivers/oracle"/>
Expand All @@ -21,6 +22,7 @@
<!-- Bundles -->
<extension point="org.jkiss.dbeaver.product.bundles">
<bundle id="drivers.db2" label="DB2 drivers"/>
<bundle id="drivers.duckdb" label="DuckDB drivers"/>
<bundle id="drivers.jt400" label="DB2 iSeries drivers"/>
<bundle id="drivers.mysql" label="MySQL drivers"/>
<bundle id="drivers.mariadb" label="MariaDB drivers"/>
Expand Down Expand Up @@ -52,6 +54,7 @@
<driver id="sqlite:sqlite_jdbc"/>
<driver id="sqlserver:microsoft"/>
<driver id="generic:trino_jdbc"/>
<driver id="generic:duckdb_jdbc"/>
</extension>


Expand Down
25 changes: 25 additions & 0 deletions server/drivers/duckdb/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>drivers.duckdb</artifactId>
<version>1.0.0</version>
<parent>
<groupId>io.cloudbeaver</groupId>
<artifactId>drivers</artifactId>
<version>1.0.0</version>
<relativePath>../</relativePath>
</parent>

<properties>
<deps.output.dir>duckdb</deps.output.dir>
</properties>

<dependencies>
<dependency>
<groupId>org.duckdb</groupId>
<artifactId>duckdb_jdbc</artifactId>
<version>0.9.2</version>
</dependency>
</dependencies>

</project>
1 change: 1 addition & 0 deletions server/drivers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<module>clickhouse_com</module>
<module>db2</module>
<module>db2-jt400</module>
<module>duckdb</module>
<module>h2</module>
<module>h2_v2</module>
<module>jaybird</module>
Expand Down

0 comments on commit a5f9065

Please sign in to comment.