You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by av...@apache.org on 2023/12/20 09:25:30 UTC

(ignite) branch master updated: IGNITE-21067 Clean up documents related to MVCC (#11087)

This is an automated email from the ASF dual-hosted git repository.

av pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 2fc50de3a5b IGNITE-21067 Clean up documents related to MVCC (#11087)
2fc50de3a5b is described below

commit 2fc50de3a5bb591b23dcdca83550a8ccd37e8150
Author: liyujue <18...@163.com>
AuthorDate: Wed Dec 20 17:25:23 2023 +0800

    IGNITE-21067 Clean up documents related to MVCC (#11087)
---
 docs/_data/toc.yaml                              | 2 --
 docs/_docs/SQL/JDBC/error-codes.adoc             | 2 +-
 docs/_docs/SQL/JDBC/jdbc-driver.adoc             | 2 +-
 docs/_docs/key-value-api/continuous-queries.adoc | 8 --------
 4 files changed, 2 insertions(+), 12 deletions(-)

diff --git a/docs/_data/toc.yaml b/docs/_data/toc.yaml
index 700c9aa9b09..d3d3534e6ce 100644
--- a/docs/_data/toc.yaml
+++ b/docs/_data/toc.yaml
@@ -219,8 +219,6 @@
           url: SQL/ODBC/data-types
         - title: Error Codes
           url: SQL/ODBC/error-codes
-    - title: Multiversion Concurrency Control
-      url: transactions/mvcc
     - title: SQL Statistics
       url: SQL/sql-statistics
     - title: Calcite-based SQL Engine
diff --git a/docs/_docs/SQL/JDBC/error-codes.adoc b/docs/_docs/SQL/JDBC/error-codes.adoc
index f2e1a33256b..d4d351b5f2f 100644
--- a/docs/_docs/SQL/JDBC/error-codes.adoc
+++ b/docs/_docs/SQL/JDBC/error-codes.adoc
@@ -50,7 +50,7 @@ The table below lists all the link:https://en.wikipedia.org/wiki/SQLSTATE[ANSI S
 
 |0A000|Requested operation is not supported.
 
-|40001|Concurrent update conflict. See link:transactions/mvcc#concurrent-updates[Concurrent Updates].
+|40001|Concurrent update conflict.
 
 |42000|Query parsing exception.
 
diff --git a/docs/_docs/SQL/JDBC/jdbc-driver.adoc b/docs/_docs/SQL/JDBC/jdbc-driver.adoc
index 7e740407d9d..a57f7e69e15 100644
--- a/docs/_docs/SQL/JDBC/jdbc-driver.adoc
+++ b/docs/_docs/SQL/JDBC/jdbc-driver.adoc
@@ -618,7 +618,7 @@ The table below lists all the link:https://en.wikipedia.org/wiki/SQLSTATE[ANSI S
 
 |0A000|Requested operation is not supported.
 
-|40001|Concurrent update conflict. See link:transactions/mvcc#concurrent-updates[Concurrent Updates].
+|40001|Concurrent update conflict.
 
 |42000|Query parsing exception.
 
diff --git a/docs/_docs/key-value-api/continuous-queries.adoc b/docs/_docs/key-value-api/continuous-queries.adoc
index 101fb51854d..a6c5dc2e906 100644
--- a/docs/_docs/key-value-api/continuous-queries.adoc
+++ b/docs/_docs/key-value-api/continuous-queries.adoc
@@ -24,14 +24,6 @@ Continuous query implementation guarantees exactly once delivery of an event to
 
 You can also specify a remote filter to narrow down the range of entries that are monitored for updates.
 
-[CAUTION]
-====
-[discrete]
-=== Continuous Queries and MVCC
-Continuous queries have a number of link:transactions/mvcc[functional limitations] when used with MVCC-enabled caches.
-====
-
-
 == Local Listener
 
 When a cache gets modified (an entry is inserted, updated, or deleted), an event is sent to the continuous query's local listener so that your application can react accordingly.