cuspymd commented on a change in pull request #4195: URL: https://github.com/apache/zeppelin/pull/4195#discussion_r683931010
########## File path: flink/flink1.10-shims/src/main/java/org/apache/zeppelin/flink/Flink110Shims.java ########## @@ -337,4 +344,27 @@ public Map extractTableConfigOptions() { } return fields; } + + public boolean isTimeIndicatorType(Object type) { + return FlinkTypeFactory.isTimeIndicatorType((TypeInformation<?>) type); + } + + @Override + public Object lookupExecutor(ClassLoader classLoader, Object environmentSettings, Object sEnv) { Review comment: As bellow, the class `Flink110Shims` inherits the class `FlinkShims`. Do you mean the method `Flink110Shims::lookupExecutor()` can't be moved to `FlinkShims::lookupExecutor()` due to a dependency issue? ``` public class Flink110Shims extends FlinkShims ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@zeppelin.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org