Sets the batch size in rows to read
(self, batch_size: usize)
| 261 | |
| 262 | /// Sets the batch size in rows to read |
| 263 | pub fn with_batch_size(self, batch_size: usize) -> Self { |
| 264 | Self { batch_size, ..self } |
| 265 | } |
| 266 | |
| 267 | /// Sets if the decoder should coerce primitive values (bool and number) into string |
| 268 | /// when the Schema's column is Utf8 or LargeUtf8. |
no outgoing calls