Details
-
Bug
-
Status: Closed
-
Blocker
-
Resolution: Fixed
-
1.9.0, 1.10.0
Description
repro test:
public class HiveModuleITCase { @Test public void test() { TableEnvironment tEnv = HiveTestUtils.createTableEnvWithBlinkPlannerBatchMode(); tEnv.unloadModule("core"); tEnv.loadModule("hive", new HiveModule("2.3.4")); tEnv.sqlQuery("select concat('an', 'bn')"); } }
seems that currently HiveInspector.toInspectors() didn't convert Flink constant to Hive constant before calling hiveShim.getObjectInspectorForConstant
I don't think it's a blocker