Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions docs/_data/toc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/_docs/SQL/JDBC/error-codes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion docs/_docs/SQL/JDBC/jdbc-driver.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
8 changes: 0 additions & 8 deletions docs/_docs/key-value-api/continuous-queries.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down