mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2024-11-22 00:56:34 +03:00
Merge branch 'ProjektA-master' into develop
This commit is contained in:
commit
3d12bdb556
|
@ -3,7 +3,7 @@ from __future__ import unicode_literals
|
||||||
import pytz
|
import pytz
|
||||||
from copy import copy, deepcopy
|
from copy import copy, deepcopy
|
||||||
from math import ceil
|
from math import ceil
|
||||||
from .engines import CollapsingMergeTree
|
from .engines import CollapsingMergeTree, ReplacingMergeTree
|
||||||
from datetime import date, datetime
|
from datetime import date, datetime
|
||||||
from .utils import comma_join, string_or_func
|
from .utils import comma_join, string_or_func
|
||||||
|
|
||||||
|
@ -540,8 +540,8 @@ class QuerySet(object):
|
||||||
Adds a FINAL modifier to table, meaning data will be collapsed to final version.
|
Adds a FINAL modifier to table, meaning data will be collapsed to final version.
|
||||||
Can be used with `CollapsingMergeTree` engine only.
|
Can be used with `CollapsingMergeTree` engine only.
|
||||||
"""
|
"""
|
||||||
if not isinstance(self._model_cls.engine, CollapsingMergeTree):
|
if not isinstance(self._model_cls.engine, (CollapsingMergeTree, ReplacingMergeTree)):
|
||||||
raise TypeError('final() method can be used only with CollapsingMergeTree engine')
|
raise TypeError('final() method can be used only with the CollapsingMergeTree and ReplacingMergeTree engines')
|
||||||
|
|
||||||
qs = copy(self)
|
qs = copy(self)
|
||||||
qs._final = True
|
qs._final = True
|
||||||
|
|
Loading…
Reference in New Issue
Block a user