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
select*from data as t join model as m
wheret.date='2024-06-26';
then plan will be like
[correct] FetchDataframeStep: select distinct groups
[wrong] MapReduceStep: str(steps[1].step.query) =
SELECT * FROM data AS t WHERE (((t.date = '2024-06-26')) AND (t.date IS NOT NULL)) AND (t.customerid = '$var[customerid]') ORDER BY t.date DESC
[wrong] ApplyTimeseriesPredictorStep: output_time_filter = t.date = '2024-06-26'
According to this doc, at step №2 should be selected window count rows before the date. At step №3 should be appyed filter date > '2024-06-26' (or >=?)
The text was updated successfully, but these errors were encountered:
If have TS
model
and do query:then plan will be like
t.date = '2024-06-26'
According to this doc, at step №2 should be selected
window
count rows before the date. At step №3 should be appyed filterdate > '2024-06-26'
(or >=?)The text was updated successfully, but these errors were encountered: