Skip to content

Commit

Permalink
fix sql syntax ydb-platform#10
Browse files Browse the repository at this point in the history
  • Loading branch information
yumkam committed Jan 14, 2025
1 parent 62939a1 commit f2458af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ydb/tests/fq/generic/streaming/test_join.py
Original file line number Diff line number Diff line change
Expand Up @@ -695,14 +695,14 @@ def freeze(json):
u.id as uid, u.age as uage
FROM
$input AS e
LEFT JOIN ANY {streamlookup} ydb_conn_{table_name}.`dby` AS u
LEFT JOIN {streamlookup} ANY ydb_conn_{table_name}.`dby` AS u
ON(e.hash = u.hash)
;
$enriched2 = SELECT e.hash as hash, key, uid, uage,
u2.id as uid2, u2.age as uage2
FROM
$enriched AS e
LEFT JOIN ANY {streamlookup} ydb_conn_{table_name}.`dby` AS u2
LEFT JOIN {streamlookup} ANY ydb_conn_{table_name}.`dby` AS u2
ON(e.hash = u2.hash)
;
$formatTime = DateTime::Format("%Y%m%d%H%M%S");
Expand Down

0 comments on commit f2458af

Please sign in to comment.