Skip to content

Commit 47ba04b

Browse files
authored
tests for #9177 (#9217)
1 parent 72edf2f commit 47ba04b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -280,11 +280,11 @@ def freeze(json):
280280
281281
$enriched = select e.id as id,
282282
e.user as user_id,
283-
u.id as uid
283+
eu.id as uid
284284
from
285285
$input as e
286-
left join {streamlookup} ydb_conn_{table_name}.`users` as u
287-
on(e.user = u.id)
286+
left join {streamlookup} ydb_conn_{table_name}.`users` as eu
287+
on(e.user = eu.id)
288288
;
289289
290290
insert into myyds.`{output_topic}`

0 commit comments

Comments
 (0)