diff --git a/src/duckdb/src/execution/operator/csv_scanner/sniffer/type_detection.cpp b/src/duckdb/src/execution/operator/csv_scanner/sniffer/type_detection.cpp index 89347630..c4c31cbf 100644 --- a/src/duckdb/src/execution/operator/csv_scanner/sniffer/type_detection.cpp +++ b/src/duckdb/src/execution/operator/csv_scanner/sniffer/type_detection.cpp @@ -488,7 +488,7 @@ void CSVSniffer::DetectTypes() { if (!best_candidate) { DialectCandidates dialect_candidates(options.dialect_options.state_machine_options); auto error = CSVError::SniffingError(options, dialect_candidates.Print()); - error_handler->Error(error); + error_handler->Error(error, true); } // Assert that it's all good at this point. D_ASSERT(best_candidate && !best_format_candidates.empty()); diff --git a/src/duckdb/src/function/table/version/pragma_version.cpp b/src/duckdb/src/function/table/version/pragma_version.cpp index b43f28f2..36cd6d64 100644 --- a/src/duckdb/src/function/table/version/pragma_version.cpp +++ b/src/duckdb/src/function/table/version/pragma_version.cpp @@ -1,5 +1,5 @@ #ifndef DUCKDB_PATCH_VERSION -#define DUCKDB_PATCH_VERSION "3-dev156" +#define DUCKDB_PATCH_VERSION "3-dev158" #endif #ifndef DUCKDB_MINOR_VERSION #define DUCKDB_MINOR_VERSION 1 @@ -8,10 +8,10 @@ #define DUCKDB_MAJOR_VERSION 1 #endif #ifndef DUCKDB_VERSION -#define DUCKDB_VERSION "v1.1.3-dev156" +#define DUCKDB_VERSION "v1.1.3-dev158" #endif #ifndef DUCKDB_SOURCE_ID -#define DUCKDB_SOURCE_ID "9cba6a2a03" +#define DUCKDB_SOURCE_ID "c3ca3607c2" #endif #include "duckdb/function/table/system_functions.hpp" #include "duckdb/main/database.hpp"