Skip to content

Commit eb30517

Browse files
chore: Update vendored sources to duckdb/duckdb@c3ca360 (#579)
Force error on CSV Sniffer Failure (duckdb/duckdb#14661) Co-authored-by: krlmlr <[email protected]>
1 parent 832bbb4 commit eb30517

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/duckdb/src/execution/operator/csv_scanner/sniffer/type_detection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ void CSVSniffer::DetectTypes() {
488488
if (!best_candidate) {
489489
DialectCandidates dialect_candidates(options.dialect_options.state_machine_options);
490490
auto error = CSVError::SniffingError(options, dialect_candidates.Print());
491-
error_handler->Error(error);
491+
error_handler->Error(error, true);
492492
}
493493
// Assert that it's all good at this point.
494494
D_ASSERT(best_candidate && !best_format_candidates.empty());

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 "3-dev156"
2+
#define DUCKDB_PATCH_VERSION "3-dev158"
33
#endif
44
#ifndef DUCKDB_MINOR_VERSION
55
#define DUCKDB_MINOR_VERSION 1
@@ -8,10 +8,10 @@
88
#define DUCKDB_MAJOR_VERSION 1
99
#endif
1010
#ifndef DUCKDB_VERSION
11-
#define DUCKDB_VERSION "v1.1.3-dev156"
11+
#define DUCKDB_VERSION "v1.1.3-dev158"
1212
#endif
1313
#ifndef DUCKDB_SOURCE_ID
14-
#define DUCKDB_SOURCE_ID "9cba6a2a03"
14+
#define DUCKDB_SOURCE_ID "c3ca3607c2"
1515
#endif
1616
#include "duckdb/function/table/system_functions.hpp"
1717
#include "duckdb/main/database.hpp"

0 commit comments

Comments
 (0)