Vladsz83 commented on code in PR #11478: URL: https://github.com/apache/ignite/pull/11478#discussion_r1725331793
########## modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/RexImpTable.java: ########## @@ -574,6 +585,13 @@ private void defineMethod(SqlOperator operator, Method method, NullPolicy nullPo map.put(operator, new MethodImplementor(method, nullPolicy, false)); } + /** */ + private ReflectiveImplementor defineReflective(SqlOperator operator, Method... methods) { + final ReflectiveImplementor implementor = new ReflectiveImplementor(ImmutableList.copyOf(methods)); + map.put(operator, implementor); Review Comment: Let's use Ignite style's line breaks. -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org