ClickHouse/tests/queries/0_stateless/01034_with_fill_and_push_down_predicate.sql

2 lines
252 B
MySQL
Raw Normal View History

SELECT * FROM ( SELECT date_time FROM ( SELECT toDateTime('2019-11-14 22:15:00') AS date_time UNION ALL SELECT toDateTime('2019-11-15 01:15:00') AS date_time ) ORDER BY date_time WITH fill step 900 ) WHERE date_time < toDateTime('2019-11-15 00:15:00')