()
| 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] |
nothing calls this directly
no test coverage detected
searching dependent graphs…