timoninmaxim commented on code in PR #11618: URL: https://github.com/apache/ignite/pull/11618#discussion_r1852490360
########## modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/H2SchemaManager.java: ########## @@ -221,6 +222,12 @@ private void dropTable(H2TableDescriptor tbl) { /** {@inheritDoc} */ @Override public void onFunctionCreated(String schema, String name, boolean deterministic, Method method) { + if (!Modifier.isStatic(method.getModifiers())) { + log.warning("Skip creating SQL function '" + name + "' in H2 engine because it is not static."); Review Comment: This log message appears only once, when cache is created. -- 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