You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by lz...@apache.org on 2020/03/25 03:03:17 UTC

[flink] branch release-1.10 updated: [FLINK-16759][hive] HiveModuleTest failed to compile on release-1.10

This is an automated email from the ASF dual-hosted git repository.

lzljs3620320 pushed a commit to branch release-1.10
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.10 by this push:
     new 572717d  [FLINK-16759][hive] HiveModuleTest failed to compile on release-1.10
572717d is described below

commit 572717dbc35369d29441c2ad4eb0ba73aa803ee0
Author: Jingsong Lee <ji...@gmail.com>
AuthorDate: Wed Mar 25 11:02:39 2020 +0800

    [FLINK-16759][hive] HiveModuleTest failed to compile on release-1.10
    
    
    This closes #11503
---
 .../test/java/org/apache/flink/table/module/hive/HiveModuleTest.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-connectors/flink-connector-hive/src/test/java/org/apache/flink/table/module/hive/HiveModuleTest.java b/flink-connectors/flink-connector-hive/src/test/java/org/apache/flink/table/module/hive/HiveModuleTest.java
index 04cf165..2939f64 100644
--- a/flink-connectors/flink-connector-hive/src/test/java/org/apache/flink/table/module/hive/HiveModuleTest.java
+++ b/flink-connectors/flink-connector-hive/src/test/java/org/apache/flink/table/module/hive/HiveModuleTest.java
@@ -155,7 +155,7 @@ public class HiveModuleTest {
 		TableEnvironment tableEnv = HiveTestUtils.createTableEnvWithBlinkPlannerBatchMode();
 
 		tableEnv.unloadModule("core");
-		tableEnv.loadModule("hive", new HiveModule());
+		tableEnv.loadModule("hive", new HiveModule(HiveShimLoader.getHiveVersion()));
 
 		List<Row> results = TableUtils.collectToList(tableEnv.sqlQuery("select str_to_map('a:1,b:2,c:3',',',':')"));