diff --git a/app/operations.py b/app/operations.py index 5ab0b5d..26743fb 100644 --- a/app/operations.py +++ b/app/operations.py @@ -69,7 +69,7 @@ async def execute_select( @router.get(path="/fetch_cursor", dependencies=[Depends(get_current_user)]) async def fetch_cursor( cursor_id: str, - page_size: Annotated[int, Field(ge=1, le=10_000)] = 50, + page_size: Annotated[int, Field(ge=1, le=50_000)] = 50, ) -> SelectResult: cached_cursor = mysql.cached_cursors.get(cursor_id, None) if cached_cursor is None: