Skip to content

Commit b273f4d

Browse files
authored
Merge pull request duckdb#130 from carlopi/reorder_fields
Reorder fields and add comment + add TODO
2 parents 64dd6c8 + 045db30 commit b273f4d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

extension/httpfs/include/httpfs_client.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,13 @@ struct HTTPFSParams : public HTTPParams {
2222
bool enable_server_cert_verification = DEFAULT_ENABLE_SERVER_CERT_VERIFICATION;
2323
bool enable_curl_server_cert_verification = true;
2424
idx_t hf_max_per_page = DEFAULT_HF_MAX_PER_PAGE;
25-
string user_agent = {""};
2625
string ca_cert_file;
2726
string bearer_token;
2827
bool unsafe_disable_etag_checks {false};
2928
shared_ptr<HTTPState> state;
29+
string user_agent = {""};
30+
// Additional fields needs to be appended at the end and need to be propagated to duckdb-wasm
31+
// TODO: make this unnecessary
3032
};
3133

3234
class HTTPFSUtil : public HTTPUtil {

0 commit comments

Comments
 (0)