Skip to content

Commit

Permalink
Update vendored DuckDB sources to 21187d8
Browse files Browse the repository at this point in the history
  • Loading branch information
duckdblabs-bot committed Nov 17, 2024
1 parent 21187d8 commit 24d9aec
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/duckdb/src/function/function_list.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ static const StaticFunctionDefinition function[] = {
DUCKDB_SCALAR_FUNCTION(CreateSortKeyFun),
DUCKDB_SCALAR_FUNCTION(CurrvalFun),
DUCKDB_SCALAR_FUNCTION_SET_ALIAS(DivideFun),
DUCKDB_SCALAR_FUNCTION_ALIAS(EndsWithFun),
DUCKDB_SCALAR_FUNCTION(ErrorFun),
DUCKDB_SCALAR_FUNCTION(FinalizeFun),
DUCKDB_AGGREGATE_FUNCTION_SET(FirstFun),
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 "4-dev1904"
#define DUCKDB_PATCH_VERSION "4-dev1906"
#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.4-dev1904"
#define DUCKDB_VERSION "v1.1.4-dev1906"
#endif
#ifndef DUCKDB_SOURCE_ID
#define DUCKDB_SOURCE_ID "fb7701fec0"
#define DUCKDB_SOURCE_ID "3a1ac5a37b"
#endif
#include "duckdb/function/table/system_functions.hpp"
#include "duckdb/main/database.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,12 @@ struct SuffixFun {
static ScalarFunction GetFunction();
};

struct EndsWithFun {
using ALIAS = SuffixFun;

static constexpr const char *Name = "ends_with";
};

struct ContainsFun {
static constexpr const char *Name = "contains";
static constexpr const char *Parameters = "string,search_string";
Expand Down

0 comments on commit 24d9aec

Please sign in to comment.