Skip to content

Commit

Permalink
Update vendored DuckDB sources to f849473
Browse files Browse the repository at this point in the history
  • Loading branch information
duckdblabs-bot committed Oct 22, 2024
1 parent f849473 commit b17c0dc
Show file tree
Hide file tree
Showing 2 changed files with 5 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 "3-dev38"
#define DUCKDB_PATCH_VERSION "3-dev40"
#endif
#ifndef DUCKDB_MINOR_VERSION
#define DUCKDB_MINOR_VERSION 1
Expand All @@ -8,10 +8,10 @@
#define DUCKDB_MAJOR_VERSION 1
#endif
#ifndef DUCKDB_VERSION
#define DUCKDB_VERSION "v1.1.3-dev38"
#define DUCKDB_VERSION "v1.1.3-dev40"
#endif
#ifndef DUCKDB_SOURCE_ID
#define DUCKDB_SOURCE_ID "52b43b1660"
#define DUCKDB_SOURCE_ID "43d26298af"
#endif
#include "duckdb/function/table/system_functions.hpp"
#include "duckdb/main/database.hpp"
Expand Down
3 changes: 2 additions & 1 deletion src/duckdb/src/storage/single_file_block_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,9 @@ void SingleFileBlockManager::MarkBlockAsUsed(block_id_t block_id) {
}
max_block++;
} else if (free_list.find(block_id) != free_list.end()) {
// block is currently int he free list - erase
// block is currently in the free list - erase
free_list.erase(block_id);
newly_freed_list.erase(block_id);
} else {
// block is already in use - increase reference count
IncreaseBlockReferenceCountInternal(block_id);
Expand Down

0 comments on commit b17c0dc

Please sign in to comment.