oleg-vlsk commented on code in PR #11903: URL: https://github.com/apache/ignite/pull/11903#discussion_r1986025663
########## modules/core/src/main/java/org/apache/ignite/configuration/SqlConfiguration.java: ########## @@ -242,4 +261,32 @@ public QueryEngineConfiguration[] getQueryEnginesConfiguration() { @Override public String toString() { return S.toString(SqlConfiguration.class, this); } + + /** + * Returns the default SQL plan history size based on the SQL engine. If no engine is configured, H2 is used by + * default as per {@link GridQueryProcessor}. + * + * @return The default SQL query plan history size. + */ + private int defaultSqlPlanHistorySize() { Review Comment: Done, logic for determining the default SQL plan history size has been moved to `RunningQueryManager`. -- 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