Skip to content

Commit 5055d5a

Browse files
committed
Bump to main
1 parent ed073ca commit 5055d5a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

duckdb

Submodule duckdb updated 1531 files

src/postgres_extension.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ static void SetPostgresConnectionLimit(ClientContext &context, SetScope scope, V
5858
}
5959
auto databases = DatabaseManager::Get(context).GetDatabases(context);
6060
for (auto &db_ref : databases) {
61-
auto &db = db_ref.get();
61+
auto &db = *db_ref;
6262
auto &catalog = db.GetCatalog();
6363
if (catalog.GetCatalogType() != "postgres") {
6464
continue;

src/storage/postgres_clear_cache.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ static unique_ptr<FunctionData> ClearCacheBind(ClientContext &context, TableFunc
2424
void PostgresClearCacheFunction::ClearPostgresCaches(ClientContext &context) {
2525
auto databases = DatabaseManager::Get(context).GetDatabases(context);
2626
for (auto &db_ref : databases) {
27-
auto &db = db_ref.get();
27+
auto &db = *db_ref;
2828
auto &catalog = db.GetCatalog();
2929
if (catalog.GetCatalogType() != "postgres") {
3030
continue;

0 commit comments

Comments
 (0)