ClickHouse/tests/queries/0_stateless/00345_index_accurate_comparison.sql

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

22 lines
512 B
MySQL
Raw Normal View History

DROP TABLE IF EXISTS index;
2016-07-09 00:20:44 +00:00
2022-06-23 08:37:52 +00:00
set allow_deprecated_syntax_for_merge_tree=1;
CREATE TABLE index
2016-07-09 00:20:44 +00:00
(
key Int32,
name String,
merge_date Date
) ENGINE = MergeTree(merge_date, key, 8192);
insert into index values (1,'1','2016-07-07');
insert into index values (-1,'-1','2016-07-07');
2016-07-09 00:20:44 +00:00
select * from index where key = 1;
select * from index where key = -1;
OPTIMIZE TABLE index;
select * from index where key = 1;
select * from index where key = -1;
select * from index where key < -0.5;
2016-07-09 00:20:44 +00:00
DROP TABLE index;