Skip to content

Commit b487f91

Browse files
author
Kazantsev Maksim
committed
fmt
1 parent 981a1f5 commit b487f91

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

native/core/src/execution/operators/parquet_writer.rs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -918,8 +918,14 @@ mod tests {
918918

919919
let mut object_store_options: HashMap<String, String> = HashMap::new();
920920
object_store_options.insert("fs.s3a.access.key".to_string(), "admin".to_string());
921-
object_store_options.insert("fs.s3a.secret.key".to_string(), "adminsecretkey".to_string());
922-
object_store_options.insert("fs.s3a.endpoint".to_string(), "http://localhost:9000".to_string());
921+
object_store_options.insert(
922+
"fs.s3a.secret.key".to_string(),
923+
"adminsecretkey".to_string(),
924+
);
925+
object_store_options.insert(
926+
"fs.s3a.endpoint".to_string(),
927+
"http://localhost:9000".to_string(),
928+
);
923929

924930
let mut writer = StorageWriterFactory::create(
925931
&output_path,

0 commit comments

Comments
 (0)