We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c3b539 commit d41b78bCopy full SHA for d41b78b
1 file changed
src/cli/mod.rs
@@ -717,7 +717,9 @@ fn path_to_writer(path: &Path, schema: SchemaRef) -> Result<AnyWriter> {
717
Ok(AnyWriter::Parquet(writer))
718
}
719
#[cfg(feature = "vortex")]
720
- "vortex" => Ok(AnyWriter::Vortex(VortexFileWriter::new(file, schema, path)?)),
+ "vortex" => Ok(AnyWriter::Vortex(VortexFileWriter::new(
721
+ file, schema, path,
722
+ )?)),
723
_ => {
724
725
return Err(eyre!(
0 commit comments