Skip to content

Commit 7bb19ae

Browse files
committed
vendor: Update vendored sources to duckdb/duckdb@4c370a7
Do not accept null values in lists for column parameters (duckdb/duckdb#16425) Add python version to duckdb_api (duckdb/duckdb#15599) Update flaky return_files.test (duckdb/duckdb#16432)
1 parent c6d07c4 commit 7bb19ae

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/duckdb/src/common/bind_helpers.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ vector<bool> ParseColumnList(const Value &value, vector<string> &names, const st
5656
}
5757
throw BinderException("\"%s\" expects a column list or * as parameter", loption);
5858
}
59+
if (value.IsNull()) {
60+
throw BinderException("\"%s\" expects a column list or * as parameter, it can't be a NULL value", loption);
61+
}
5962
auto &children = ListValue::GetChildren(value);
6063
// accept '*' as single argument
6164
if (children.size() == 1 && children[0].type().id() == LogicalTypeId::VARCHAR &&

src/duckdb/src/function/table/version/pragma_version.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#ifndef DUCKDB_PATCH_VERSION
2-
#define DUCKDB_PATCH_VERSION "1-dev192"
2+
#define DUCKDB_PATCH_VERSION "1-dev204"
33
#endif
44
#ifndef DUCKDB_MINOR_VERSION
55
#define DUCKDB_MINOR_VERSION 2
@@ -8,10 +8,10 @@
88
#define DUCKDB_MAJOR_VERSION 1
99
#endif
1010
#ifndef DUCKDB_VERSION
11-
#define DUCKDB_VERSION "v1.2.1-dev192"
11+
#define DUCKDB_VERSION "v1.2.1-dev204"
1212
#endif
1313
#ifndef DUCKDB_SOURCE_ID
14-
#define DUCKDB_SOURCE_ID "9f42783b00"
14+
#define DUCKDB_SOURCE_ID "4c370a7fe0"
1515
#endif
1616
#include "duckdb/function/table/system_functions.hpp"
1717
#include "duckdb/main/database.hpp"

0 commit comments

Comments
 (0)