From f2458af1476a538b20090fabb73a91bc3843998a Mon Sep 17 00:00:00 2001 From: Yuriy Kaminskiy Date: Tue, 14 Jan 2025 15:28:53 +0300 Subject: [PATCH] fix sql syntax #10 --- ydb/tests/fq/generic/streaming/test_join.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ydb/tests/fq/generic/streaming/test_join.py b/ydb/tests/fq/generic/streaming/test_join.py index 828663162d0b..4628980e76c1 100644 --- a/ydb/tests/fq/generic/streaming/test_join.py +++ b/ydb/tests/fq/generic/streaming/test_join.py @@ -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");