pub const MAX_PAGE_SIZE: usize = 1000;Expand description
Hard ceiling on rows in a single query reply. A limit above it is
rejected with QueryError::TooLarge, and a 0 limit defaults to a full
page. Callers page through larger result sets with offset.