ClickHouse/tests/queries/0_stateless/02714_date_date32_in.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
199 B
MySQL
Raw Normal View History

select toDate32('2020-01-01') in (toDate('2020-01-01'));
select toDate('2020-01-01') in (toDate32('2020-01-01'));
select toDate('2020-01-01') in 1::Int64;
select toDate32('2020-01-01') in 1::UInt64;