Description
My code like this:
results, total = await users_service.get_many_and_count(
LimitOffset(offset=0, limit=50),OrderBy(field_name="id", sort_order="asc")
)
- id -> uuid v7
- it took ~1.6 seconds for this query, the translated query is like this (echo):
SELECT user_account.id, user_account.email,..., count(*) OVER () AS anon_1
FROM user_account ORDER BY user_account.id ASC
LIMIT %(param_1)s::INTEGER OFFSET %(param_2)s::INTEGER
URL to code causing the issue
No response
MCVE
Steps to reproduce
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
Screenshots
"In the format of: "
Logs
Package Version
1.11.0
Platform
Description
My code like this:
results, total = await users_service.get_many_and_count(
LimitOffset(offset=0, limit=50),OrderBy(field_name="id", sort_order="asc")
)
URL to code causing the issue
No response
MCVE
# Your MCVE code hereSteps to reproduce
Screenshots
"In the format of:
"Logs
Package Version
1.11.0
Platform