export_csv_from_table

Function export_csv_from_table 

Source
pub fn export_csv_from_table<P, C>(
    table: &Table<P>,
    csv_path: C,
    columns: &[CsvExportColumn],
    options: &CsvWriteOptions,
) -> Result<()>
where P: Pager<Blob = EntryHandle> + Send + Sync, C: AsRef<Path>,
Expand description

Materialize a table scan into a CSV file using column projections.