From 74c287ece000db42298e3aeff62b79b2a24307fe Mon Sep 17 00:00:00 2001 From: "Kacur, Michal" Date: Wed, 8 Nov 2023 11:24:35 +0000 Subject: [PATCH] Update 'doc/component-operation-guide-lts/source/using_hetuengine/using_hetuengine_materialized_views/sql_statement_example_of_materialized_views.rst' removed quotas from line 30 that probably causing that build is failing --- .../sql_statement_example_of_materialized_views.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/component-operation-guide-lts/source/using_hetuengine/using_hetuengine_materialized_views/sql_statement_example_of_materialized_views.rst b/doc/component-operation-guide-lts/source/using_hetuengine/using_hetuengine_materialized_views/sql_statement_example_of_materialized_views.rst index 2c1eab1..bd8d814 100644 --- a/doc/component-operation-guide-lts/source/using_hetuengine/using_hetuengine_materialized_views/sql_statement_example_of_materialized_views.rst +++ b/doc/component-operation-guide-lts/source/using_hetuengine/using_hetuengine_materialized_views/sql_statement_example_of_materialized_views.rst @@ -27,7 +27,7 @@ For details about the SQL statements for materialized views, see :ref:`Table 1 < +-----------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Showing materialized views | Show all MVs whose catalog name is **mv** and schema name is **mvschema**. | show materialized views from mvschema; | **mvschema** indicates the schema name. The value of **catalog** is fixed to **mv**. | +-----------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ - | | Use the LIKE clause to filter the materialized views whose names meet the rule expression. | show MATERIALIZED VIEWs in mvschema tables like '``*``mvtb_0001'; | **mvschema** indicates the schema name. | + | | Use the LIKE clause to filter the materialized views whose names meet the rule expression. | show MATERIALIZED VIEWs in mvschema tables like ``*`` mvtb_0001; | **mvschema** indicates the schema name. | +-----------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Querying the statement for creating a materialized view | Query the statement for creating the the materialized view of **mv.default.mv1**. | show create materialized view mv.default.mv1; | **mv1** indicates the name of the materialized view. | +-----------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+