Skip to content

Commit f817e40

Browse files
committed
vendor: Update vendored sources to duckdb/duckdb@ea53cb7
Throw on unknown logging_storage set (duckdb/duckdb#15681)
1 parent 7f9a0f3 commit f817e40

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/duckdb/src/function/table/version/pragma_version.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#ifndef DUCKDB_PATCH_VERSION
2-
#define DUCKDB_PATCH_VERSION "4-dev4483"
2+
#define DUCKDB_PATCH_VERSION "4-dev4486"
33
#endif
44
#ifndef DUCKDB_MINOR_VERSION
55
#define DUCKDB_MINOR_VERSION 1
@@ -8,10 +8,10 @@
88
#define DUCKDB_MAJOR_VERSION 1
99
#endif
1010
#ifndef DUCKDB_VERSION
11-
#define DUCKDB_VERSION "v1.1.4-dev4483"
11+
#define DUCKDB_VERSION "v1.1.4-dev4486"
1212
#endif
1313
#ifndef DUCKDB_SOURCE_ID
14-
#define DUCKDB_SOURCE_ID "1c6ea28bdc"
14+
#define DUCKDB_SOURCE_ID "ea53cb71c7"
1515
#endif
1616
#include "duckdb/function/table/system_functions.hpp"
1717
#include "duckdb/main/database.hpp"

src/duckdb/src/logging/log_manager.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,8 @@ void LogManager::SetLogStorage(DatabaseInstance &db, const string &storage_name)
143143
throw NotImplementedException("File log storage is not yet implemented");
144144
} else if (registered_log_storages.find(storage_name_to_lower) != registered_log_storages.end()) {
145145
log_storage = registered_log_storages[storage_name_to_lower];
146+
} else {
147+
throw InvalidInputException("Log storage '%s' is not yet registered", storage_name);
146148
}
147149
config.storage = storage_name_to_lower;
148150
}

0 commit comments

Comments
 (0)