Skip to content

Commit

Permalink
Capitalize URL in httpfs extension flags
Browse files Browse the repository at this point in the history
  • Loading branch information
szarnyasg authored and Tmonster committed Dec 7, 2023
1 parent cde1077 commit a7ddb87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extension/httpfs/httpfs_extension.cpp
Expand Up @@ -38,10 +38,10 @@ static void LoadInternal(DatabaseInstance &instance) {
config.AddExtensionOption("s3_secret_access_key", "S3 Access Key", LogicalType::VARCHAR);
config.AddExtensionOption("s3_session_token", "S3 Session Token", LogicalType::VARCHAR);
config.AddExtensionOption("s3_endpoint", "S3 Endpoint (empty for default endpoint)", LogicalType::VARCHAR);
config.AddExtensionOption("s3_url_style", "S3 url style ('vhost' (default) or 'path')", LogicalType::VARCHAR,
config.AddExtensionOption("s3_url_style", "S3 URL style ('vhost' (default) or 'path')", LogicalType::VARCHAR,
Value("vhost"));
config.AddExtensionOption("s3_use_ssl", "S3 use SSL (default true)", LogicalType::BOOLEAN, Value(true));
config.AddExtensionOption("s3_url_compatibility_mode", "Disable Globs and Query Parameters on S3 urls",
config.AddExtensionOption("s3_url_compatibility_mode", "Disable Globs and Query Parameters on S3 URLs",
LogicalType::BOOLEAN, Value(false));

// S3 Uploader config
Expand Down

0 comments on commit a7ddb87

Please sign in to comment.