Skip to content

Commit

Permalink
chore: Update vendored sources to duckdb/duckdb@8ecc90c (#280)
Browse files Browse the repository at this point in the history
Merge pull request duckdb/duckdb#13556 from carlopi/fix_clang_tidy

Co-authored-by: krlmlr <[email protected]>
  • Loading branch information
github-actions[bot] and krlmlr authored Sep 7, 2024
1 parent 69081fe commit 7847934
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-dev4726"
#define DUCKDB_PATCH_VERSION "1-dev4728"
#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-dev4726"
#define DUCKDB_VERSION "v1.0.1-dev4728"
#endif
#ifndef DUCKDB_SOURCE_ID
#define DUCKDB_SOURCE_ID "0d612daeec"
#define DUCKDB_SOURCE_ID "8ecc90c8d6"
#endif
#include "duckdb/function/table/system_functions.hpp"
#include "duckdb/main/database.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ class InsertionOrderPreservingMap {
}

void insert(pair<string, V> &&value) { // NOLINT: match stl API
map_idx[value.first] = map.size();
map.push_back(std::move(value));
map_idx[value.first] = map.size() - 1;
}

void erase(typename VECTOR_TYPE::iterator it) { // NOLINT: match stl API
Expand Down

0 comments on commit 7847934

Please sign in to comment.