MCPcopy Create free account
hub / github.com/apache/datafusion / parquet_table_options

Function parquet_table_options

datafusion/common/src/config.rs:3536–3546  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3534 #[cfg(feature = "parquet")]
3535 #[test]
3536 fn parquet_table_options() {
3537 let mut table_config = TableOptions::new();
3538 table_config.set_config_format(ConfigFileType::PARQUET);
3539 table_config
3540 .set("format.bloom_filter_enabled::col1", "true")
3541 .unwrap();
3542 assert_eq!(
3543 table_config.parquet.column_specific_options["col1"].bloom_filter_enabled,
3544 Some(true)
3545 );
3546 }
3547
3548 #[cfg(feature = "parquet_encryption")]
3549 #[test]

Callers

nothing calls this directly

Calls 3

newFunction · 0.85
set_config_formatMethod · 0.80
setMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…