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

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-table-store.git


The following commit(s) were added to refs/heads/master by this push:
     new 519916cf [hotfix] Document back quotes for system table triple access 
mode
519916cf is described below

commit 519916cfe5bd2f7a87fbf7ec1d987bc644e739aa
Author: JingsongLi <[email protected]>
AuthorDate: Fri Jan 13 11:25:31 2023 +0800

    [hotfix] Document back quotes for system table triple access mode
---
 docs/content/docs/how-to/querying-tables.md | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/docs/content/docs/how-to/querying-tables.md 
b/docs/content/docs/how-to/querying-tables.md
index d54edd05..c9a8c8dd 100644
--- a/docs/content/docs/how-to/querying-tables.md
+++ b/docs/content/docs/how-to/querying-tables.md
@@ -93,6 +93,11 @@ System tables contain metadata and information about each 
table, such as the sna
 
 Currently, Flink, Spark and Trino supports querying system tables.
 
+In some cases, the table name needs to be enclosed with back quotes to avoid 
syntax parsing conflicts, for example triple access mode:
+```sql
+SELECT * FROM my_catalog.my_db.`MyTable$snapshots`;
+```
+
 ### Snapshots Table
 
 You can query the snapshot history information of the table through snapshots 
table.

Reply via email to