Skip to content

Commit

Permalink
chore: Update vendored sources to duckdb/duckdb@0446ab4 (#549)
Browse files Browse the repository at this point in the history
Use corrent container to produce BinderErrors (duckdb/duckdb#14437)

Co-authored-by: krlmlr <krlmlr@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and krlmlr authored Nov 2, 2024
1 parent a71d0ba commit 98b4416
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 "3-dev33"
#define DUCKDB_PATCH_VERSION "3-dev35"
#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-dev33"
#define DUCKDB_VERSION "v1.1.3-dev35"
#endif
#ifndef DUCKDB_SOURCE_ID
#define DUCKDB_SOURCE_ID "ceb77af793"
#define DUCKDB_SOURCE_ID "0446ab42e9"
#endif
#include "duckdb/function/table/system_functions.hpp"
#include "duckdb/main/database.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/duckdb/src/planner/expression_binder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ static bool CombineMissingColumns(ErrorData &current, ErrorData new_error) {
// get query location
QueryErrorContext context;
current_entry = current_info.find("position");
new_entry = current_info.find("position");
new_entry = new_info.find("position");
uint64_t position;
if (current_entry != current_info.end() &&
TryCast::Operation<string_t, uint64_t>(current_entry->second, position)) {
Expand Down

0 comments on commit 98b4416

Please sign in to comment.