Skip to content

Commit ecf6851

Browse files
LuciferYangdongjoon-hyun
authored andcommitted
[SPARK-51041][BUILD] Add hive-llap-client and hive-llap-common as test dependency of hive-thriftserver
### What changes were proposed in this pull request? This pr aims to add `hive-llap-client` and `hive-llap-common` as test dependency of `hive-thriftserver` ### Why are the changes needed? Fix maven test of `hive-thriftserver`. Due to the lack of these test dependencies, testing `hive-thriftserver` using Maven will hang. ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? - Pass GitHub Actions - Manually check: After adding the test dependencies, when testing the `hive-thriftserver` module using Maven, `HiveThriftBinaryServerSuite` will no longer hang. ``` build/mvn -Pyarn -Pkubernetes -Pvolcano -Phive -Phive-thriftserver -Phadoop-cloud -Pjvm-profiler -Pspark-ganglia-lgpl -Pkinesis-asl clean install build/mvn -pl sql/hive-thriftserver -Pyarn -Pkubernetes -Pvolcano -Phive -Phive-thriftserver -Phadoop-cloud -Pjvm-profiler -Pspark-ganglia-lgpl -Pkinesis-asl clean install -fae ``` ### Was this patch authored or co-authored using generative AI tooling? No Closes #49736 from LuciferYang/SPARK-51041. Authored-by: yangjie01 <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent 994b4b1 commit ecf6851

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

sql/hive-thriftserver/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,16 @@
148148
<artifactId>byte-buddy-agent</artifactId>
149149
<scope>test</scope>
150150
</dependency>
151+
<dependency>
152+
<groupId>${hive.group}</groupId>
153+
<artifactId>hive-llap-common</artifactId>
154+
<scope>${hive.llap.scope}</scope>
155+
</dependency>
156+
<dependency>
157+
<groupId>${hive.group}</groupId>
158+
<artifactId>hive-llap-client</artifactId>
159+
<scope>${hive.llap.scope}</scope>
160+
</dependency>
151161
<dependency>
152162
<groupId>net.sf.jpam</groupId>
153163
<artifactId>jpam</artifactId>

0 commit comments

Comments
 (0)