Skip to content

Commit 746d92d

Browse files
committed
More format fixes
1 parent d9b0450 commit 746d92d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

lib/src/webdb.cc

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,8 @@ void WebDB::RegisterCustomExtensionOptions(shared_ptr<duckdb::DuckDB> database)
794794
webfs->Config()->duckdb_config_options.reliable_head_requests = BooleanValue::Get(parameter);
795795
webfs->IncrementCacheEpoch();
796796
};
797-
auto callback_experimental_s3_tables_global_proxy = [](ClientContext& context, SetScope scope, Value& parameter) {
797+
auto callback_experimental_s3_tables_global_proxy = [](ClientContext& context, SetScope scope,
798+
Value& parameter) {
798799
experimental_s3_tables_global_proxy = StringValue::Get(parameter);
799800
};
800801

@@ -811,8 +812,10 @@ void WebDB::RegisterCustomExtensionOptions(shared_ptr<duckdb::DuckDB> database)
811812
Value(), callback_s3_endpoint);
812813
config.AddExtensionOption("reliable_head_requests", "Set whether HEAD requests returns reliable content-length",
813814
LogicalType::BOOLEAN, Value(true), callback_reliable_head_requests);
814-
config.AddExtensionOption("experimental_s3_tables_global_proxy", "Experimental - Global proxy to interact with S3 Tables", LogicalType::VARCHAR, Value(""),
815-
callback_experimental_s3_tables_global_proxy);
815+
config.AddExtensionOption("experimental_s3_tables_global_proxy",
816+
"Experimental - Global proxy to interact with S3 Tables", LogicalType::VARCHAR,
817+
Value(""), callback_experimental_s3_tables_global_proxy);
818+
816819

817820
webfs->IncrementCacheEpoch();
818821
}

0 commit comments

Comments
 (0)