wuchong commented on code in PR #1581:
URL: https://github.com/apache/fluss/pull/1581#discussion_r2296561707


##########
website/docs/streaming-lakehouse/integrate-data-lakes/paimon.md:
##########
@@ -74,12 +74,12 @@ To read only data stored in Paimon, use the `$lake` suffix 
in the table name. Th
 -- Assume we have a table named `orders`
 
 -- Read from Paimon
-SELECT COUNT(*) FROM orders$lake;
+SELECT COUNT(*) FROM `orders`$lake;
 ```
 
 ```sql title="Flink SQL"
 -- We can also query the system tables
-SELECT * FROM orders$lake$snapshots;
+SELECT * FROM `orders`$lake$snapshots;

Review Comment:
   We don't need to quote `orders`, they are not reserved keywords in Flink 
SQL. 



##########
website/docs/streaming-lakehouse/integrate-data-lakes/paimon.md:
##########
@@ -99,7 +99,7 @@ This query may run slower than reading only from Paimon, but 
it returns the most
 
 ### Reading with other Engines
 
-Since the data tiered to Paimon from Fluss is stored as a standard Paimon 
table, you can use any engine that supports Paimon to read it. Below is an 
example using 
[StarRocks](https://paimon.apache.org/docs/master/engines/starrocks/):
+Since the data tiered to Paimon from Fluss is stored as a standard Paimon 
table, you can use any engine that supports Paimon to read it. Below is an 
example using 
[StarRocks](https://paimon.apache.org/docs/master/ecosystem/starrocks/):

Review Comment:
   Could you please replace the link with a stable versioned URL to ensure it 
remains persistent and doesn't break in the future?
   For example: https://paimon.apache.org/docs/1.2/ecosystem/starrocks/



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to