MCPcopy Create free account
hub / github.com/apache/paimon-rust / file_format

Method file_format

crates/paimon/src/spec/core_options.rs:341–346  ·  view source on GitHub ↗

File format for data files (e.g. "parquet", "orc", "avro", "vortex"). Default is "parquet".

(&self)

Source from the content-addressed store, hash-verified

339 /// File format for data files (e.g. "parquet", "orc", "avro", "vortex").
340 /// Default is "parquet".
341 pub fn file_format(&self) -> &str {
342 self.options
343 .get(FILE_FORMAT_OPTION)
344 .map(String::as_str)
345 .unwrap_or("parquet")
346 }
347
348 /// File compression codec (e.g. "lz4", "zstd", "snappy", "none").
349 /// Default is "zstd".

Callers 3

prepare_commitMethod · 0.80
newMethod · 0.80
newMethod · 0.80

Calls 1

getMethod · 0.45

Tested by

no test coverage detected