mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2024-11-10 19:36:33 +03:00
Update docs
This commit is contained in:
parent
50f1fed187
commit
64d15cf3b6
|
@ -4,6 +4,7 @@ Change Log
|
||||||
Unreleased
|
Unreleased
|
||||||
----------
|
----------
|
||||||
- Added `timeout` parameter to database initializer (SUHAR1K)
|
- Added `timeout` parameter to database initializer (SUHAR1K)
|
||||||
|
- Added `final()` method to querysets (M1hacka)
|
||||||
|
|
||||||
v1.0.3
|
v1.0.3
|
||||||
------
|
------
|
||||||
|
|
|
@ -21,7 +21,7 @@ created on the ClickHouse server if it does not already exist.
|
||||||
- `username`: optional connection credentials.
|
- `username`: optional connection credentials.
|
||||||
- `password`: optional connection credentials.
|
- `password`: optional connection credentials.
|
||||||
- `readonly`: use a read-only connection.
|
- `readonly`: use a read-only connection.
|
||||||
- `autocreate`: automatically create the database if does not exist (unless in readonly mode).
|
- `autocreate`: automatically create the database if it does not exist (unless in readonly mode).
|
||||||
- `timeout`: the connection timeout in seconds.
|
- `timeout`: the connection timeout in seconds.
|
||||||
|
|
||||||
|
|
||||||
|
@ -866,6 +866,13 @@ Returns a copy of this queryset that includes only rows matching the conditions.
|
||||||
Add q object to query if it specified.
|
Add q object to query if it specified.
|
||||||
|
|
||||||
|
|
||||||
|
#### final()
|
||||||
|
|
||||||
|
|
||||||
|
Adds a FINAL modifier to table, meaning data will be collapsed to final version.
|
||||||
|
Can be used with `CollapsingMergeTree` engine only.
|
||||||
|
|
||||||
|
|
||||||
#### only(*field_names)
|
#### only(*field_names)
|
||||||
|
|
||||||
|
|
||||||
|
@ -967,6 +974,13 @@ Returns a copy of this queryset that includes only rows matching the conditions.
|
||||||
Add q object to query if it specified.
|
Add q object to query if it specified.
|
||||||
|
|
||||||
|
|
||||||
|
#### final()
|
||||||
|
|
||||||
|
|
||||||
|
Adds a FINAL modifier to table, meaning data will be collapsed to final version.
|
||||||
|
Can be used with `CollapsingMergeTree` engine only.
|
||||||
|
|
||||||
|
|
||||||
#### group_by(*args)
|
#### group_by(*args)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
* [Ordering](querysets.md#ordering)
|
* [Ordering](querysets.md#ordering)
|
||||||
* [Omitting Fields](querysets.md#omitting-fields)
|
* [Omitting Fields](querysets.md#omitting-fields)
|
||||||
* [Distinct](querysets.md#distinct)
|
* [Distinct](querysets.md#distinct)
|
||||||
|
* [Final](querysets.md#final)
|
||||||
* [Slicing](querysets.md#slicing)
|
* [Slicing](querysets.md#slicing)
|
||||||
* [Pagination](querysets.md#pagination)
|
* [Pagination](querysets.md#pagination)
|
||||||
* [Aggregation](querysets.md#aggregation)
|
* [Aggregation](querysets.md#aggregation)
|
||||||
|
|
|
@ -407,7 +407,7 @@ class QuerySet(object):
|
||||||
def final(self):
|
def final(self):
|
||||||
"""
|
"""
|
||||||
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):
|
||||||
raise TypeError('final() method can be used only with CollapsingMergeTree engine')
|
raise TypeError('final() method can be used only with CollapsingMergeTree engine')
|
||||||
|
|
Loading…
Reference in New Issue
Block a user