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