TRIVIAL fix test

This commit is contained in:
Itai Shirav 2018-04-07 15:14:14 +03:00
parent f0e0c8035a
commit 723bd03548

View File

@ -33,9 +33,7 @@ class EnginesTestCase(_EnginesHelperTestCase):
def test_merge_tree_with_sampling(self):
class TestModel(SampleModel):
engine = MergeTree('date',
('date', 'event_id', 'event_group', 'intHash32(event_id)'),
sampling_expr='intHash32(event_id)')
engine = MergeTree('date', ('date', 'event_id', 'event_group', 'intHash32(event_id)'), sampling_expr='intHash32(event_id)')
self._create_and_insert(TestModel)
def test_merge_tree_with_granularity(self):