Skip to content

Commit

Permalink
Fixing ScanArgsParquet include_file_paths bug (#270)
Browse files Browse the repository at this point in the history
Fixing ScanArgsParquet include_file_paths bug
  • Loading branch information
Bidek56 authored Sep 16, 2024
1 parent 690dbc3 commit bc24e12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lazy/dataframe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ pub fn scan_parquet(path: String, options: ScanParquetOptions) -> napi::Result<J
use_statistics,
hive_options,
glob,
include_file_paths: include_file_paths.map(Arc::from),
include_file_paths: include_file_paths.map(PlSmallStr::from),
};
let lf = LazyFrame::scan_parquet(path, args).map_err(JsPolarsErr::from)?;
Ok(lf.into())
Expand Down

0 comments on commit bc24e12

Please sign in to comment.