Miyake-Diogo opened a new issue, #3800: URL: https://github.com/apache/arrow-datafusion/issues/3800
When I Try to read a CSV and Write as Parquet, compiler raises this errror: Error: Execution("file size of 4 is less than footer"). I didn't found anything on docs and internetm, about it ... My code: ``` rust use datafusion::prelude::*; #[tokio::main] async fn main() -> datafusion::error::Result<()> { let ctx: SessionContext = SessionContext::new(); let raw_covid_path: &str = "data/minilake/raw/covid/owid-covid-data.csv"; let covid_df = ctx.read_csv(raw_covid_path, CsvReadOptions::new()).await?; covid_df.write_parquet(stage_covid_path,None).await?; Ok(()) } ``` Covid Dataset is located in this [link](https://ourworldindata.org/explorers/coronavirus-data-explorer?facet=none&Metric=Confirmed+deaths&Interval=Cumulative+%28last+12+months%29&Relative+to+Population=true&Color+by+test+positivity=false) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org