Skip to content

Commit

Permalink
Added support for Trino.
Browse files Browse the repository at this point in the history
  • Loading branch information
kenstott committed Sep 18, 2024
1 parent 5166b7e commit 7140d85
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
11 changes: 6 additions & 5 deletions adapters/trino/model.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@
{
"name": "TEST",
"type": "jdbc",
"jdbcDriver": "org.h2.Driver",
"jdbcUrl": "jdbc:h2:tcp://localhost:1521/test",
"jdbcSchema": "PUBLIC",
"jdbcUser": "sa",
"jdbcPassword": ""
"jdbcDriver": "io.trino.jdbc.TrinoDriver",
"jdbcUrl": "jdbc:trino://kenstott-free-cluster.trino.galaxy.starburst.io:443",
"jdbcSchema": "demo",
"jdbcCatalog": "sample",
"jdbcUser": "[email protected]/accountadmin",
"jdbcPassword": "HasuraR0cks!"
}
]
}
10 changes: 5 additions & 5 deletions calcite-rs-jni/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<calcite.version>1.38.0-SNAPSHOT</calcite.version>
<opentelemetry.version>1.40.0</opentelemetry.version>
<opentelemetry.version>1.42.1</opentelemetry.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -320,7 +320,7 @@
<dependency>
<groupId>io.trino</groupId>
<artifactId>trino-jdbc</artifactId>
<version>453</version>
<version>457</version>
</dependency>
<dependency>
<groupId>com.teradata.jdbc</groupId>
Expand Down Expand Up @@ -426,11 +426,11 @@
<artifactId>redshift-jdbc42</artifactId>
<version>2.1.0.29</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.opentelemetry.semconv/opentelemetry-semconv-incubating -->
<dependency>
<groupId>io.opentelemetry</groupId>
<groupId>io.opentelemetry.semconv</groupId>
<artifactId>opentelemetry-semconv</artifactId>
<version>1.20.0-alpha</version>
<scope>runtime</scope>
<version>1.27.0-alpha</version>
</dependency>
<dependency>
<groupId>jdk.tools</groupId>
Expand Down

0 comments on commit 7140d85

Please sign in to comment.