This is an automated email from the ASF dual-hosted git repository. zstan pushed a commit to branch ignite-2.18 in repository https://gitbox.apache.org/repos/asf/ignite.git
commit 2502868a088b7019f1b23581c9bc4b4411e556a7 Author: ignitetcbot <[email protected]> AuthorDate: Fri May 15 11:00:05 2026 +0300 IGNITE-28678 Fix transactions entry in documentation tree (#13138) Co-authored-by: Dmitriy Pavlov <[email protected]> (cherry picked from commit 9695d5ec1286a4a934bd09005242a63f5ae223ba) --- docs/_data/toc.yaml | 4 ++-- docs/_docs/SQL/sql-calcite.adoc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/_data/toc.yaml b/docs/_data/toc.yaml index 38d9b63d931..881c5523e15 100644 --- a/docs/_data/toc.yaml +++ b/docs/_data/toc.yaml @@ -232,8 +232,8 @@ url: sql-reference/ddl - title: Data Manipulation Language (DML) url: sql-reference/dml - - title: Transactions - url: key-value-api/transactions + - title: Transaction-aware Queries + url: SQL/sql-calcite#transaction-aware-queries - title: Operational Commands url: sql-reference/operational-commands - title: Aggregate functions diff --git a/docs/_docs/SQL/sql-calcite.adoc b/docs/_docs/SQL/sql-calcite.adoc index 956b71e5991..ce047f2715a 100644 --- a/docs/_docs/SQL/sql-calcite.adoc +++ b/docs/_docs/SQL/sql-calcite.adoc @@ -480,7 +480,7 @@ Disables certain optimizer rules. This is an optimizer level hint. SELECT /*+ DISABLE_RULE('MergeJoinConverter') */ T1.* FROM TBL1 T1 JOIN TBL2 T2 ON T1.V1=T2.V1 WHERE T2.V2=? ---- -== Transactions [[transactions]] +== Transaction-aware Queries [[transaction-aware-queries]] The Calcite-based query engine supports SQL transactions with READ_COMMITTED isolation. To ensure backward compatibility, transaction support is disabled by default. To enable it, use the following configuration:
