Skip to content

Commit

Permalink
chore: Update vendored sources to duckdb/duckdb@f41419f
Browse files Browse the repository at this point in the history
Merge pull request duckdb/duckdb#11443 from huachaohuang/patch-1
  • Loading branch information
krlmlr committed Apr 2, 2024
1 parent b952e72 commit be072e3
Show file tree
Hide file tree
Showing 2 changed files with 3 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 "2-dev360"
#define DUCKDB_PATCH_VERSION "2-dev362"
#endif
#ifndef DUCKDB_MINOR_VERSION
#define DUCKDB_MINOR_VERSION 10
Expand All @@ -8,10 +8,10 @@
#define DUCKDB_MAJOR_VERSION 0
#endif
#ifndef DUCKDB_VERSION
#define DUCKDB_VERSION "v0.10.2-dev360"
#define DUCKDB_VERSION "v0.10.2-dev362"
#endif
#ifndef DUCKDB_SOURCE_ID
#define DUCKDB_SOURCE_ID "6a6a1028f1"
#define DUCKDB_SOURCE_ID "f41419fa88"
#endif
#include "duckdb/function/table/system_functions.hpp"
#include "duckdb/main/database.hpp"
Expand Down
1 change: 0 additions & 1 deletion src/duckdb/src/planner/binder/statement/bind_insert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,6 @@ BoundStatement Binder::Bind(InsertStatement &stmt) {
if (!entry.second) {
throw BinderException("Duplicate column name \"%s\" in INSERT", stmt.columns[i]);
}
column_name_map[stmt.columns[i]] = i;
auto column_index = table.GetColumnIndex(stmt.columns[i]);
if (column_index.index == COLUMN_IDENTIFIER_ROW_ID) {
throw BinderException("Cannot explicitly insert values into rowid column");
Expand Down

0 comments on commit be072e3

Please sign in to comment.