Details
-
Sub-task
-
Status: Resolved
-
Major
-
Resolution: Duplicate
-
1.13.1, 1.15.0
-
None
-
None
Description
We can reproduce through a UT
Add test case in HiveDialectITCase
@Test public void testPercentileApprox() { CoreModule coreModule = CoreModule.INSTANCE; for (String moduleName : tableEnv.listModules()) { tableEnv.unloadModule(moduleName); } tableEnv.loadModule("hive", new HiveModule(hiveCatalog.getHiveVersion())); tableEnv.loadModule("core", coreModule); tableEnv.executeSql("create table t1 (id bigint, name string)"); tableEnv.executeSql("select percentile_approx(id, 0.98) from t1"); }
Attachments
Issue Links
- is duplicated by
-
FLINK-15855 Use the new type inference for hive udaf
- Closed