append_csv_into_table_with_mapping

Function append_csv_into_table_with_mapping 

Source
pub fn append_csv_into_table_with_mapping<P, C>(
    table: &Table<P>,
    csv_path: C,
    field_mapping: &HashMap<String, FieldId>,
    csv_options: &CsvReadOptions,
) -> Result<()>
where P: Pager<Blob = EntryHandle> + Send + Sync, C: AsRef<Path>,
Expand description

Append rows while honoring an explicit column-to-field mapping supplied by the caller.