using 4.0.0 version of cratedb
sample sql:
select * from table where col1 = 'exp1' date BETWEEN '2019-01-01' AND '2022-02-14'
right join dim.time where date BETWEEN '2019-01-01' AND '2022-02-14'
in this sql we know first part is empty data, and right join will case this error, but if I narrow down the date to '2020-01-01' AND '2022-02-14' it will work normal, also if I seperate two it works too. and if I delete the col1 filter it work too