protected ResultSet executeQuery(Connection connection, String loaderId, @Nullable Object... arguments) throws SQLException {
return executeQuery(connection, true, loaderId, arguments);
}
protected ResultSet executeQuery(Connection connection, boolean forceExecution, String loaderId, @Nullable Object... arguments) throws SQLException {
StatementExecutionProcessor executionProcessor = processors.get(loaderId);
return executionProcessor.executeQuery(connection, forceExecution, arguments);
}