Revert "Added a test by Denis Zhuravlev #2170"

This reverts commit cb63179951.
This commit is contained in:
Alexey Milovidov 2018-12-28 23:35:05 +03:00
parent cb63179951
commit d5b00298eb
2 changed files with 0 additions and 10 deletions

View File

@ -1,9 +0,0 @@
USE test;
drop table if exists testSegmtFault;
CREATE TABLE testSegmtFault (key1 Int32, id1 Int64, c1 Int64) ENGINE = MergeTree PARTITION BY id1 ORDER BY (key1);
insert into testSegmtFault values ( -1, 1, 0 );
SELECT count(*) FROM testSegmtFault PREWHERE id1 IN (1);
drop table testSegmtFault;