From 8307ca4e08cd04f50113fa05e285277850944a61 Mon Sep 17 00:00:00 2001 From: DuckDB Labs GitHub Bot Date: Sat, 2 Nov 2024 00:33:00 +0000 Subject: [PATCH] Update vendored DuckDB sources to 1c8f82c2 --- .../operator/csv_scanner/sniffer/type_detection.cpp | 2 +- src/duckdb/src/function/table/version/pragma_version.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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"