Skip to content

Commit

Permalink
Added a test by Denis Zhuravlev ClickHouse#2170
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-milovidov committed Dec 28, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent f712f5b commit cb63179
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
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;

0 comments on commit cb63179

Please sign in to comment.