You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a bug introduced by the resent optimization done on joins. As a workaround, please add a length(1) window after the filter to enforce the filter condition to be matched.
from Stream1[x>123]#window.length(1)
join Table1
on Stream1.id == Table1.id
select Stream1.x
insert into OutputStream;
Description:
Filter is not obeyed when joining a stream with table. Below query, does not work as expected
The text was updated successfully, but these errors were encountered: