Skip to content

Commit f1c510d

Browse files
committed
fix sql syntax ydb-platform#10
1 parent 2d47ce8 commit f1c510d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/tests/fq/generic/streaming/test_join.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -804,14 +804,14 @@ def freeze(json):
804804
u.id as uid, u.age as uage
805805
FROM
806806
$input AS e
807-
LEFT JOIN ANY {streamlookup} ydb_conn_{table_name}.`dby` AS u
807+
LEFT JOIN {streamlookup} ANY ydb_conn_{table_name}.`dby` AS u
808808
ON(e.hash = u.hash)
809809
;
810810
$enriched2 = SELECT e.hash as hash, key, uid, uage,
811811
u2.id as uid2, u2.age as uage2
812812
FROM
813813
$enriched AS e
814-
LEFT JOIN ANY {streamlookup} ydb_conn_{table_name}.`dby` AS u2
814+
LEFT JOIN {streamlookup} ANY ydb_conn_{table_name}.`dby` AS u2
815815
ON(e.hash = u2.hash)
816816
;
817817
$formatTime = DateTime::Format("%Y%m%d%H%M%S");

0 commit comments

Comments
 (0)