check orders
This commit is contained in:
@ -173,7 +173,7 @@ class Query:
|
||||
limit_qry
|
||||
)
|
||||
limit_qry = limit_qry.group_by(qry_text)
|
||||
limit_qry = OrderQuery(sorted_orders=self.sorted_orders).apply(limit_qry)
|
||||
# limit_qry = OrderQuery(sorted_orders=self.sorted_orders).apply(limit_qry)
|
||||
limit_qry = LimitQuery(limit_count=self.limit_count).apply(limit_qry)
|
||||
limit_qry = OffsetQuery(query_offset=self.query_offset).apply(limit_qry)
|
||||
limit_action = FilterAction(
|
||||
|
||||
@ -281,7 +281,7 @@ class QuerySet:
|
||||
limit_raw_sql=self.limit_sql_raw,
|
||||
)
|
||||
exp = qry.build_select_expression()
|
||||
# print("\n", exp.compile(compile_kwargs={"literal_binds": True}))
|
||||
print("\n", exp.compile(compile_kwargs={"literal_binds": True}))
|
||||
return exp
|
||||
|
||||
def filter( # noqa: A003
|
||||
|
||||
Reference in New Issue
Block a user