mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2024-11-23 17:43:43 +03:00
Finished Release v2.1.3
This commit is contained in:
commit
45a9200ff6
|
@ -1,6 +1,10 @@
|
||||||
Change Log
|
Change Log
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
v2.1.3
|
||||||
|
------
|
||||||
|
- Fix pagination for models with alias columns
|
||||||
|
|
||||||
v2.1.2
|
v2.1.2
|
||||||
------
|
------
|
||||||
- Add `QuerySet.model` to support django-rest-framework 3
|
- Add `QuerySet.model` to support django-rest-framework 3
|
||||||
|
|
|
@ -319,7 +319,8 @@ class Database(object):
|
||||||
elif page_num < 1:
|
elif page_num < 1:
|
||||||
raise ValueError('Invalid page number: %d' % page_num)
|
raise ValueError('Invalid page number: %d' % page_num)
|
||||||
offset = (page_num - 1) * page_size
|
offset = (page_num - 1) * page_size
|
||||||
query = 'SELECT * FROM $table'
|
query = 'SELECT {} FROM $table'.format(", ".join(model_class.fields().keys()))
|
||||||
|
|
||||||
if conditions:
|
if conditions:
|
||||||
if isinstance(conditions, Q):
|
if isinstance(conditions, Q):
|
||||||
conditions = conditions.to_sql(model_class)
|
conditions = conditions.to_sql(model_class)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user