Skip to content

Commit

Permalink
Merge pull request #10321 from Mytherin/createsortkey
Browse files Browse the repository at this point in the history
Add create_sort_key function
  • Loading branch information
Mytherin committed Jan 24, 2024
2 parents f43eaf3 + d71ac7b commit eba3002
Show file tree
Hide file tree
Showing 9 changed files with 1,090 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/core_functions/function_list.cpp
Expand Up @@ -118,6 +118,7 @@ static StaticFunctionDefinition internal_functions[] = {
DUCKDB_SCALAR_FUNCTION(CotFun),
DUCKDB_AGGREGATE_FUNCTION(CovarPopFun),
DUCKDB_AGGREGATE_FUNCTION(CovarSampFun),
DUCKDB_SCALAR_FUNCTION(CreateSortKeyFun),
DUCKDB_SCALAR_FUNCTION(CurrentDatabaseFun),
DUCKDB_SCALAR_FUNCTION(CurrentDateFun),
DUCKDB_SCALAR_FUNCTION(CurrentQueryFun),
Expand Down
3 changes: 2 additions & 1 deletion src/core_functions/scalar/blob/CMakeLists.txt
@@ -1,4 +1,5 @@
add_library_unity(duckdb_func_blob OBJECT base64.cpp encode.cpp)
add_library_unity(duckdb_func_blob OBJECT base64.cpp create_sort_key.cpp
encode.cpp)
set(ALL_OBJECT_FILES
${ALL_OBJECT_FILES} $<TARGET_OBJECTS:duckdb_func_blob>
PARENT_SCOPE)

0 comments on commit eba3002

Please sign in to comment.