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
This commit is contained in:
Kacur, Michal 2023-11-08 11:24:35 +00:00 committed by Michal Kacur
parent 3493830b7e
commit 74c287ece0

View File

@ -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. |
+-----------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+