Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion extension/httpfs/include/httpfs_client.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,13 @@ struct HTTPFSParams : public HTTPParams {
bool enable_server_cert_verification = DEFAULT_ENABLE_SERVER_CERT_VERIFICATION;
bool enable_curl_server_cert_verification = true;
idx_t hf_max_per_page = DEFAULT_HF_MAX_PER_PAGE;
string user_agent = {""};
string ca_cert_file;
string bearer_token;
bool unsafe_disable_etag_checks {false};
shared_ptr<HTTPState> state;
string user_agent = {""};
// Additional fields needs to be appended at the end and need to be propagated to duckdb-wasm
// TODO: make this unnecessary
};

class HTTPFSUtil : public HTTPUtil {
Expand Down
Loading