This is an automated email from the ASF dual-hosted git repository. zabetak pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/hive.git
The following commit(s) were added to refs/heads/master by this push: new 44fdbee484b HIVE-27642: Add missing dependency to StartMiniHS2Cluster with Postgres (Zoltan Ratkai reviewed by Stamatis Zampetakis) 44fdbee484b is described below commit 44fdbee484bc717a1076f2c520f1adafc5190e9f Author: Zoltan Ratkai <zrat...@cloudera.com> AuthorDate: Wed Aug 30 14:29:36 2023 +0200 HIVE-27642: Add missing dependency to StartMiniHS2Cluster with Postgres (Zoltan Ratkai reviewed by Stamatis Zampetakis) Closes #4644 --- itests/hive-unit/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/itests/hive-unit/pom.xml b/itests/hive-unit/pom.xml index af54522bb96..29ece216722 100644 --- a/itests/hive-unit/pom.xml +++ b/itests/hive-unit/pom.xml @@ -489,6 +489,11 @@ <version>${htmlunit.version}</version> <scope>test</scope> </dependency> + <dependency> + <groupId>org.postgresql</groupId> + <artifactId>postgresql</artifactId> + <scope>test</scope> + </dependency> </dependencies> <build> <plugins>