Support for data skipping indexes

This commit is contained in:
Itai Shirav 2020-06-06 21:06:29 +03:00
parent 635197de38
commit 4be1b0437f
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ class IndexesTest(unittest.TestCase):
def setUp(self):
self.database = Database('test-db', log_statements=True)
if self.database.server_version < (19, 3, 3):
if self.database.server_version < (20, 1, 2, 4):
raise unittest.SkipTest('ClickHouse version too old')
def tearDown(self):

View File

@ -127,7 +127,7 @@ class MigrationsTestCase(unittest.TestCase):
with self.assertRaises(ServerError):
self.database.insert([ModelWithConstraints(f1=99, f2='x')])
if self.database.server_version < (19, 3, 3):
if self.database.server_version < (20, 1, 2, 4):
# Creating indexes
self.database.migrate('tests.sample_migrations', 18)
self.assertTrue(self.table_exists(ModelWithIndex))