Skip to content

Commit b06b573

Browse files
authored
fix(s3tables): use 's3' as the default scheme (#2313)
## Which issue does this PR close? - Closes #2312 ## What changes are included in this PR? Changes the s3tables default scheme to "s3://" ## Are these changes tested? With this change, I can read files resolved through an s3table catalog now.
1 parent 8e884ef commit b06b573

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/catalog/s3tables/src/catalog.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ impl S3TablesCatalog {
202202
// Use provided factory or default to OpenDalStorageFactory::S3
203203
let factory = storage_factory.unwrap_or_else(|| {
204204
Arc::new(OpenDalStorageFactory::S3 {
205-
configured_scheme: "s3a".to_string(),
205+
configured_scheme: "s3".to_string(),
206206
customized_credential_load: None,
207207
})
208208
});

0 commit comments

Comments
 (0)