Skip to content

Commit

Permalink
chore: Update vendored sources to duckdb/duckdb@709a18d
Browse files Browse the repository at this point in the history
Merge pull request duckdb/duckdb#13417 from Mytherin/setreadersafterio
  • Loading branch information
krlmlr committed Aug 14, 2024
1 parent 0b2defd commit 22a84d4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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 "1-dev4163"
#define DUCKDB_PATCH_VERSION "1-dev4165"
#endif
#ifndef DUCKDB_MINOR_VERSION
#define DUCKDB_MINOR_VERSION 0
Expand All @@ -8,10 +8,10 @@
#define DUCKDB_MAJOR_VERSION 1
#endif
#ifndef DUCKDB_VERSION
#define DUCKDB_VERSION "v1.0.1-dev4163"
#define DUCKDB_VERSION "v1.0.1-dev4165"
#endif
#ifndef DUCKDB_SOURCE_ID
#define DUCKDB_SOURCE_ID "4e3a192ce9"
#define DUCKDB_SOURCE_ID "709a18da59"
#endif
#include "duckdb/function/table/system_functions.hpp"
#include "duckdb/main/database.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/duckdb/src/storage/standard_buffer_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -337,8 +337,8 @@ BufferHandle StandardBufferManager::Pin(shared_ptr<BlockHandle> &handle) {
} else {
// now we can actually load the current block
D_ASSERT(handle->readers == 0);
handle->readers = 1;
buf = handle->Load(handle, std::move(reusable_buffer));
handle->readers = 1;
handle->memory_charge = std::move(reservation);
// in the case of a variable sized block, the buffer may be smaller than a full block.
int64_t delta =
Expand Down

0 comments on commit 22a84d4

Please sign in to comment.