Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions src/duckdb/src/function/table/version/pragma_version.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef DUCKDB_PATCH_VERSION
#define DUCKDB_PATCH_VERSION "4-dev252"
#define DUCKDB_PATCH_VERSION "4-dev256"
#endif
#ifndef DUCKDB_MINOR_VERSION
#define DUCKDB_MINOR_VERSION 4
Expand All @@ -8,10 +8,10 @@
#define DUCKDB_MAJOR_VERSION 1
#endif
#ifndef DUCKDB_VERSION
#define DUCKDB_VERSION "v1.4.4-dev252"
#define DUCKDB_VERSION "v1.4.4-dev256"
#endif
#ifndef DUCKDB_SOURCE_ID
#define DUCKDB_SOURCE_ID "431ad092c9"
#define DUCKDB_SOURCE_ID "e3b14d4d3b"
#endif
#include "duckdb/function/table/system_functions.hpp"
#include "duckdb/main/database.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/duckdb/src/include/duckdb/main/secret/secret.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ class KeyValueSecret : public BaseSecret {
class KeyValueSecretReader {
public:
//! Manually pass in a secret reference
KeyValueSecretReader(const KeyValueSecret &secret_p, FileOpener &opener_p) : secret(secret_p) {};
KeyValueSecretReader(const KeyValueSecret &secret_p, FileOpener &opener_p);

//! Initializes the KeyValueSecretReader by fetching the secret automatically
KeyValueSecretReader(FileOpener &opener_p, optional_ptr<FileOpenerInfo> info, const char **secret_types,
Expand Down
5 changes: 5 additions & 0 deletions src/duckdb/src/main/secret/secret.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,11 @@ void KeyValueSecretReader::Initialize(const char **secret_types, idx_t secret_ty
}
}

KeyValueSecretReader::KeyValueSecretReader(const KeyValueSecret &secret_p, FileOpener &opener_p) : secret(secret_p) {
db = opener_p.TryGetDatabase();
context = opener_p.TryGetClientContext();
}

KeyValueSecretReader::KeyValueSecretReader(FileOpener &opener_p, optional_ptr<FileOpenerInfo> info,
const char **secret_types, idx_t secret_types_len) {
db = opener_p.TryGetDatabase();
Expand Down