Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add create_sort_key function #10321

Merged
merged 14 commits into from Jan 24, 2024
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)