nizhikov commented on code in PR #11438: URL: https://github.com/apache/ignite/pull/11438#discussion_r1758454203
########## modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java: ########## @@ -3050,24 +3061,35 @@ public List<FieldsQueryCursor<List<?>>> querySqlFields( failOnMultipleStmts ); + QueryContext qryCtx = QueryContext.of( + qry, + cliCtx, + cancel, + qryProps, + userTx == null ? null : userTx.xidVersion() + ); + if (qry instanceof SqlFieldsQueryEx && ((SqlFieldsQueryEx)qry).isBatched()) { res = qryEngine.queryBatched( - QueryContext.of(qry, cliCtx, cancel, qryProps), + qryCtx, schemaName, qry.getSql(), ((SqlFieldsQueryEx)qry).batchedArguments() ); } else { res = qryEngine.query( - QueryContext.of(qry, cliCtx, cancel, qryProps), + qryCtx, schemaName, qry.getSql(), qry.getArgs() != null ? qry.getArgs() : X.EMPTY_OBJECT_ARRAY ); } } else { + if (userTx != null && txAwareQueriesEnabled) + throw new CacheException("SQL aware queries supported only for Calcite query engine"); Review Comment: Fixed. ########## modules/core/src/main/java/org/apache/ignite/internal/cache/query/index/sorted/inline/SegmentedIndexCursor.java: ########## @@ -0,0 +1,108 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.ignite.internal.cache.query.index.sorted.inline; + +import java.util.Comparator; +import java.util.PriorityQueue; +import java.util.Queue; +import org.apache.ignite.IgniteCheckedException; +import org.apache.ignite.IgniteException; +import org.apache.ignite.internal.cache.query.index.SortOrder; +import org.apache.ignite.internal.cache.query.index.sorted.IndexKeyDefinition; +import org.apache.ignite.internal.cache.query.index.sorted.IndexRow; +import org.apache.ignite.internal.cache.query.index.sorted.IndexRowComparator; +import org.apache.ignite.internal.cache.query.index.sorted.SortedIndexDefinition; +import org.apache.ignite.internal.util.lang.GridCursor; + +/** Single cursor over multiple segments. The next value is chosen with the index row comparator. */ +public class SegmentedIndexCursor implements GridCursor<IndexRow> { Review Comment: Renamed -- 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