Compare commits

..

2 commits

Author SHA1 Message Date
Guillem Borrell cbf318690c Merge branch 'main' of https://git.guillemborrell.es/guillem/dr
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
2023-01-18 09:50:30 +00:00
Guillem Borrell edaea203b7 Infer with no limits 2023-01-18 09:50:02 +00:00

View file

@ -8,6 +8,7 @@ use std::path::PathBuf;
pub fn read_csv(path: String, delimiter: u8) -> LazyFrame { pub fn read_csv(path: String, delimiter: u8) -> LazyFrame {
LazyCsvReader::new(path) LazyCsvReader::new(path)
.with_delimiter(delimiter) .with_delimiter(delimiter)
.with_infer_schema_length(None)
.finish() .finish()
.expect("Could not load file") .expect("Could not load file")
} }