Skip to content

Commit

Permalink
Bump dep.trino.version from 412 to 415
Browse files Browse the repository at this point in the history
Bumps `dep.trino.version` from 412 to 415.

Updates `trino-hdfs` from 412 to 415

Updates `trino-hive` from 412 to 415

Updates `trino-memory-context` from 412 to 415

Updates `trino-orc` from 412 to 415

Updates `trino-spi` from 412 to 415

Updates `trino-main` from 412 to 415

Updates `trino-testing` from 412 to 415
- [Release notes](https://github.com/trinodb/trino/releases)
- [Changelog](https://github.com/trinodb/trino/blob/master/docs/release-template.md)
- [Commits](https://github.com/trinodb/trino/commits)

Updates `trino-testing-services` from 412 to 415

Updates `trino-tpch` from 412 to 415

---
updated-dependencies:
- dependency-name: io.trino:trino-hdfs
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: io.trino:trino-hive
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: io.trino:trino-memory-context
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: io.trino:trino-orc
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: io.trino:trino-spi
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: io.trino:trino-main
  dependency-type: direct:development
  update-type: version-update:semver-major
- dependency-name: io.trino:trino-testing
  dependency-type: direct:development
  update-type: version-update:semver-major
- dependency-name: io.trino:trino-testing-services
  dependency-type: direct:development
  update-type: version-update:semver-major
- dependency-name: io.trino:trino-tpch
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
ebyhr committed May 3, 2023
1 parent 6edd52c commit 785fe26
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
19 changes: 15 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<parent>
<groupId>io.airlift</groupId>
<artifactId>airbase</artifactId>
<version>134</version>
<version>138</version>
</parent>

<licenses>
Expand All @@ -37,8 +37,8 @@
<air.check.fail-checkstyle>true</air.check.fail-checkstyle>
<air.check.skip-checkstyle>false</air.check.skip-checkstyle>

<dep.trino.version>412</dep.trino.version>
<dep.airlift.version>228</dep.airlift.version>
<dep.trino.version>415</dep.trino.version>
<dep.airlift.version>230</dep.airlift.version>
<dep.packaging.version>${dep.airlift.version}</dep.packaging.version>
<dep.aws-sdk.version>1.12.459</dep.aws-sdk.version>
<dep.errorprone.version>2.18.0</dep.errorprone.version>
Expand Down Expand Up @@ -247,6 +247,18 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-api</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-context</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
Expand Down Expand Up @@ -336,7 +348,6 @@
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-common</artifactId>
<scope>test</scope>
<version>1.6.20</version>
</dependency>

<dependency>
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/org/ebyhr/trino/storage/StorageModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import com.google.inject.Binder;
import com.google.inject.Module;
import com.google.inject.Scopes;
import io.opentelemetry.api.OpenTelemetry;
import io.trino.filesystem.TrinoFileSystemFactory;
import io.trino.filesystem.hdfs.HdfsFileSystemFactory;
import io.trino.spi.ptf.ConnectorTableFunction;
Expand Down Expand Up @@ -57,6 +58,7 @@ public void configure(Binder binder)
binder.bind(StoragePageSourceProvider.class).in(Scopes.SINGLETON);
newSetBinder(binder, ConnectorTableFunction.class).addBinding().toProvider(ListTableFunction.class).in(Scopes.SINGLETON);
binder.bind(TrinoFileSystemFactory.class).to(HdfsFileSystemFactory.class).in(Scopes.SINGLETON);
binder.bind(OpenTelemetry.class).toInstance(OpenTelemetry.noop());

jsonBinder(binder).addDeserializerBinding(Type.class).to(TypeDeserializer.class);
jsonCodecBinder(binder).bindMapJsonCodec(String.class, listJsonCodec(StorageTable.class));
Expand Down

0 comments on commit 785fe26

Please sign in to comment.