optional-kubernetes-engine/bookshelf/model_cloudsql.py [58:63]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
             .order_by(Book.title)
             .limit(limit)
             .offset(cursor))
    books = builtin_list(map(from_sql, query.all()))
    next_page = cursor + limit if len(books) == limit else None
    return (books, next_page)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



optional-kubernetes-engine/bookshelf/model_cloudsql.py [70:75]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
             .order_by(Book.title)
             .limit(limit)
             .offset(cursor))
    books = builtin_list(map(from_sql, query.all()))
    next_page = cursor + limit if len(books) == limit else None
    return (books, next_page)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



