Limit the maximum batch size
(mut self, batch_size: usize)
| 303 | |
| 304 | /// Limit the maximum batch size |
| 305 | pub fn with_max_batch_size(mut self, batch_size: usize) -> Self { |
| 306 | self.max_batch_size = batch_size; |
| 307 | self |
| 308 | } |
| 309 | |
| 310 | /// Return up to row_limit rows; |
| 311 | pub fn with_row_limit(mut self, row_limit: usize) -> Self { |
no outgoing calls