We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 981a1f5 commit b487f91Copy full SHA for b487f91
1 file changed
native/core/src/execution/operators/parquet_writer.rs
@@ -918,8 +918,14 @@ mod tests {
918
919
let mut object_store_options: HashMap<String, String> = HashMap::new();
920
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());
+ object_store_options.insert(
+ "fs.s3a.secret.key".to_string(),
923
+ "adminsecretkey".to_string(),
924
+ );
925
926
+ "fs.s3a.endpoint".to_string(),
927
+ "http://localhost:9000".to_string(),
928
929
930
let mut writer = StorageWriterFactory::create(
931
&output_path,
0 commit comments