write_parquet() fatally crashes the R environment when writing a 'record_batch' object
#Repro
// working_dir <- getwd() dir.create(paste0(working_dir, '/test')) out_file <- '/test.snappy.parquet'data(mtcars) batch <- record_batch(mtcars) write_parquet(batch, paste0(working_dir,out_file))
- links to