This is an automated email from the ASF dual-hosted git repository.
yuxia pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fluss.git
The following commit(s) were added to refs/heads/main by this push:
new 554227440 [hotfix] Fix iceberg quickstart sql (#1964)
554227440 is described below
commit 5542274407dac8f60f3536c4a1d8b77f3097d450
Author: xx789 <[email protected]>
AuthorDate: Tue Nov 11 13:46:31 2025 +0800
[hotfix] Fix iceberg quickstart sql (#1964)
---
website/docs/quickstart/lakehouse.md | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/website/docs/quickstart/lakehouse.md
b/website/docs/quickstart/lakehouse.md
index b63e504d6..3dcd074bf 100644
--- a/website/docs/quickstart/lakehouse.md
+++ b/website/docs/quickstart/lakehouse.md
@@ -520,10 +520,13 @@ SELECT o.order_key,
c.acctbal,
c.mktsegment,
n.name
-FROM fluss_order o
-LEFT JOIN fluss_customer FOR SYSTEM_TIME AS OF `o`.`ptime` AS `c`
+FROM (
+ SELECT *, PROCTIME() as ptime
+ FROM `default_catalog`.`default_database`.source_order
+) o
+LEFT JOIN fluss_customer FOR SYSTEM_TIME AS OF o.ptime AS c
ON o.cust_key = c.cust_key
-LEFT JOIN fluss_nation FOR SYSTEM_TIME AS OF `o`.`ptime` AS `n`
+LEFT JOIN fluss_nation FOR SYSTEM_TIME AS OF o.ptime AS n
ON c.nation_key = n.nation_key;
```