diff --git a/src/httpfs_extension.cpp b/src/httpfs_extension.cpp index 7ce1ac1..cf7db70 100644 --- a/src/httpfs_extension.cpp +++ b/src/httpfs_extension.cpp @@ -128,7 +128,7 @@ static void LoadInternal(ExtensionLoader &loader) { }; config.AddExtensionOption("httpfs_client_implementation", "Select which is the HTTPUtil implementation to be used", LogicalType::VARCHAR, "default", callback_httpfs_client_implementation); - config.AddExtensionOption("disable_global_s3_configuration", + config.AddExtensionOption("enable_global_s3_configuration", "Automatically fetch AWS credentials from environment variables.", LogicalType::BOOLEAN, Value::BOOLEAN(true)); diff --git a/src/s3fs.cpp b/src/s3fs.cpp index 88ef1c4..937f896 100644 --- a/src/s3fs.cpp +++ b/src/s3fs.cpp @@ -1382,7 +1382,7 @@ S3KeyValueReader::S3KeyValueReader(FileOpener &opener_p, optional_ptr(); } diff --git a/test/sql/test_read_public_bucket.test b/test/sql/test_read_public_bucket.test index 1c4c173..0293e30 100644 --- a/test/sql/test_read_public_bucket.test +++ b/test/sql/test_read_public_bucket.test @@ -34,7 +34,7 @@ SELECT * FROM read_parquet('s3://coiled-datasets/timeseries/20-years/parquet/par # default to not using globally scoped settings for secrets statement ok -set disable_global_s3_configuration=false; +set enable_global_s3_configuration=false; statement ok SELECT * FROM read_parquet('s3://coiled-datasets/timeseries/20-years/parquet/part.0.parquet') LIMIT 5;