Skip to content

Commit

Permalink
chore: Update vendored sources to duckdb/duckdb@92e0964 (#503)
Browse files Browse the repository at this point in the history
[CSV Reader] Making escape not limited to only quotes (duckdb/duckdb#14314)
Change Makefile to correctly handle DISABLE_SANITIZER and DISABLE_UBSAN (duckdb/duckdb#14316)

Co-authored-by: krlmlr <krlmlr@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and krlmlr authored Oct 17, 2024
1 parent 502e30d commit 62ff37d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ void CSVStateMachineCache::Insert(const CSVStateMachineOptions &state_machine_op
InitializeTransitionArray(transition_array, cur_state, CSVState::QUOTED);
break;
case CSVState::UNQUOTED:
case CSVState::ESCAPE:
InitializeTransitionArray(transition_array, cur_state, CSVState::INVALID);
break;
case CSVState::COMMENT:
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 "2-dev180"
#define DUCKDB_PATCH_VERSION "2-dev186"
#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.2-dev180"
#define DUCKDB_VERSION "v1.1.2-dev186"
#endif
#ifndef DUCKDB_SOURCE_ID
#define DUCKDB_SOURCE_ID "01e6e98e38"
#define DUCKDB_SOURCE_ID "92e0964376"
#endif
#include "duckdb/function/table/system_functions.hpp"
#include "duckdb/main/database.hpp"
Expand Down

0 comments on commit 62ff37d

Please sign in to comment.