Skip to content

Commit bc24e12

Browse files
authored
Fixing ScanArgsParquet include_file_paths bug (#270)
Fixing ScanArgsParquet include_file_paths bug
1 parent 690dbc3 commit bc24e12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lazy/dataframe.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ pub fn scan_parquet(path: String, options: ScanParquetOptions) -> napi::Result<J
779779
use_statistics,
780780
hive_options,
781781
glob,
782-
include_file_paths: include_file_paths.map(Arc::from),
782+
include_file_paths: include_file_paths.map(PlSmallStr::from),
783783
};
784784
let lf = LazyFrame::scan_parquet(path, args).map_err(JsPolarsErr::from)?;
785785
Ok(lf.into())

0 commit comments

Comments
 (0)