We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c7c3ad commit 5542274Copy full SHA for 5542274
website/docs/quickstart/lakehouse.md
@@ -520,10 +520,13 @@ SELECT o.order_key,
520
c.acctbal,
521
c.mktsegment,
522
n.name
523
-FROM fluss_order o
524
-LEFT JOIN fluss_customer FOR SYSTEM_TIME AS OF `o`.`ptime` AS `c`
+FROM (
+ SELECT *, PROCTIME() as ptime
525
+ FROM `default_catalog`.`default_database`.source_order
526
+) o
527
+LEFT JOIN fluss_customer FOR SYSTEM_TIME AS OF o.ptime AS c
528
ON o.cust_key = c.cust_key
-LEFT JOIN fluss_nation FOR SYSTEM_TIME AS OF `o`.`ptime` AS `n`
529
+LEFT JOIN fluss_nation FOR SYSTEM_TIME AS OF o.ptime AS n
530
ON c.nation_key = n.nation_key;
531
```
532
0 commit comments