add check that p.pruning works

This commit is contained in:
Denny Crane 2021-04-19 18:06:54 -03:00 committed by GitHub
parent 4ad4dbbc09
commit 1dbbe2d075
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ CREATE TABLE foo_merge as foo ENGINE=Merge(currentDatabase(), '^foo');
CREATE TABLE t2 (Id Int32, Val Int32, X Int32) Engine=Memory;
INSERT INTO t2 values (4, 3, 4);
SET force_primary_key = 1;
SET force_primary_key = 1, force_index_by_date=1;
SELECT * FROM foo_merge WHERE Val = 3 AND Id = 3;
SELECT count(), X FROM foo_merge JOIN t2 USING Val WHERE Val = 3 AND Id = 3 AND t2.X == 4 GROUP BY X;