Create a new TableWrite for writing Arrow data. For primary-key tables, sequence numbers are lazily scanned per partition when the first writer for that partition is created.
(&self)
| 49 | /// For primary-key tables, sequence numbers are lazily scanned per partition |
| 50 | /// when the first writer for that partition is created. |
| 51 | pub fn new_write(&self) -> crate::Result<TableWrite> { |
| 52 | TableWrite::new(self.table, self.commit_user.clone()) |
| 53 | } |
| 54 | } |
no outgoing calls