diff options
| author | yumkam <[email protected]> | 2024-09-13 15:25:15 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-09-13 15:25:15 +0300 |
| commit | 47ba04bf9cb867327ccba40b6d7ed6f625053673 (patch) | |
| tree | a916d36c23f8cf663f1a0fc8e32f9b7f419531ce | |
| parent | 72edf2fb9827c0c37476ec46516db60cbf865b5c (diff) | |
tests for #9177 (#9217)
| -rw-r--r-- | ydb/tests/fq/generic/streaming/test_join.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ydb/tests/fq/generic/streaming/test_join.py b/ydb/tests/fq/generic/streaming/test_join.py index e82ac738b5e..e872437bb81 100644 --- a/ydb/tests/fq/generic/streaming/test_join.py +++ b/ydb/tests/fq/generic/streaming/test_join.py @@ -280,11 +280,11 @@ TESTCASES = [ $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}` |
