From 9064d3c6ec9f11aed3b92633249e24caced2a4bc Mon Sep 17 00:00:00 2001 From: Piotr Sarna Date: Thu, 28 Jul 2022 12:30:37 +0200 Subject: [PATCH] docs: mention the new synchronous_updates option in mv docs This commit adds a table (with 1 row) explaining Scylla-specific materialized view options - which now consists just of synchronous_updates. Tested manually by running `make preview` from docs/ directory. Closes #11150 --- docs/cql/mv.rst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/cql/mv.rst b/docs/cql/mv.rst index 3ec5a5159c..f13ef80318 100644 --- a/docs/cql/mv.rst +++ b/docs/cql/mv.rst @@ -146,6 +146,20 @@ MV Options A materialized view is internally implemented by a table, and as such, creating a MV allows the :ref:`same options than creating a table `. +Additionally, the following Scylla-specific options are supported: + +.. list-table:: + :widths: 20 10 10 60 + :header-rows: 1 + + * - Option + - Kind + - Default + - Description + * - ``synchronous_updates`` + - simple + - false + - When true, view updates are applied synchronously; otherwise, view updates may be applied in the background .. _alter-materialized-view-statement: