Skip to content

Commit d638e1c

Browse files
committed
Fixed dq_file unit tests
1 parent 464b6ca commit d638e1c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

yt/yql/tests/sql/suites/stream_lookup_join/lookup_join.yql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use plato;
33

44
select e.id as id, e.ts as ts, e.host as host, h.fqdn as fqdn, h.ip4 as ip4, h.ip6 as ip6
55
from Event as e
6-
left join /*+ streamlookup() */ Host as h
6+
left join /*+ streamlookup() */ any Host as h
77
on (e.host == h.hostname)
88
;
99

yt/yql/tests/sql/suites/stream_lookup_join/lookup_join_narrow.yql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use plato;
33

44
select e.id as id, e.ts as ts, e.host as host, h.fqdn as fqdn, h.ip4 as ip4, h.ip6 as ip6
55
from Event as e
6-
left join /*+ streamlookup() */ Host as h
6+
left join /*+ streamlookup() */ any Host as h
77
on (e.host == h.hostname)
88
;
99

0 commit comments

Comments
 (0)