Skip to content

Commit

Permalink
Merge c6d4afa into 72edf2f
Browse files Browse the repository at this point in the history
  • Loading branch information
yumkam authored Sep 13, 2024
2 parents 72edf2f + c6d4afa commit 61d97d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ydb/tests/fq/generic/streaming/test_join.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,11 +280,11 @@ def freeze(json):
$enriched = select e.id as id,
e.user as user_id,
u.id as uid
eu.id as uid
from
$input as e
left join {streamlookup} ydb_conn_{table_name}.`users` as u
on(e.user = u.id)
left join {streamlookup} ydb_conn_{table_name}.`users` as eu
on(e.user = eu.id)
;
insert into myyds.`{output_topic}`
Expand Down

0 comments on commit 61d97d9

Please sign in to comment.