Skip to content

Commit

Permalink
Update hive-apache to 3.1.2-22
Browse files Browse the repository at this point in the history
Along with libthrift 0.20.0
  • Loading branch information
wendigo committed Jun 19, 2024
1 parent ec882bb commit 4ebad5d
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
21 changes: 18 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
<dependency>
<groupId>io.trino.hive</groupId>
<artifactId>hive-apache</artifactId>
<version>3.1.2-6</version>
<version>3.1.2-22</version>
</dependency>
<dependency>
<groupId>io.trino.tempto</groupId>
Expand Down Expand Up @@ -143,7 +143,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.3.2</version>
<version>3.12.0</version>
</dependency>

<dependency>
Expand All @@ -167,7 +167,7 @@
<dependency>
<groupId>org.apache.thrift</groupId>
<artifactId>libthrift</artifactId>
<version>0.9.3-1</version>
<version>0.20.0</version>
<exclusions>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
Expand Down Expand Up @@ -199,4 +199,19 @@
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.basepom.maven</groupId>
<artifactId>duplicate-finder-maven-plugin</artifactId>
<configuration>
<ignoredResourcePatterns>
<ignoredResourcePattern>mozilla/public-suffix-list.txt</ignoredResourcePattern>
</ignoredResourcePatterns>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
6 changes: 6 additions & 0 deletions tempto-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,12 @@
<dependency>
<groupId>io.trino.hive</groupId>
<artifactId>hive-apache</artifactId>
<exclusions>
<exclusion>
<groupId>org.apache.parquet</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@ private void open()
checkState(client != null, "Previously failed to open");
return;
}
transport = new TSocket(thriftHost, thriftPort);

try {
transport = new TSocket(thriftHost, thriftPort);
transport.open();
}
catch (TTransportException e) {
Expand Down

0 comments on commit 4ebad5d

Please sign in to comment.