Skip to content

Commit

Permalink
Update vendored DuckDB sources to 1c8f82c
Browse files Browse the repository at this point in the history
  • Loading branch information
duckdblabs-bot committed Nov 2, 2024
1 parent 1c8f82c commit 8307ca4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down
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 "3-dev156"
#define DUCKDB_PATCH_VERSION "3-dev158"
#endif
#ifndef DUCKDB_MINOR_VERSION
#define DUCKDB_MINOR_VERSION 1
Expand All @@ -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"
Expand Down

0 comments on commit 8307ca4

Please sign in to comment.