Skip to content

Commit

Permalink
Add new functions to extension Entries
Browse files Browse the repository at this point in the history
  • Loading branch information
PhictionalOne committed Jun 5, 2024
1 parent c4ff8cd commit bbb341d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/include/duckdb/main/extension_entries.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,14 @@ static constexpr ExtensionFunctionEntry EXTENSION_FUNCTIONS[] = {
{"icu_sort_key", "icu", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json", "json", CatalogType::MACRO_ENTRY},
{"json_array", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json_array_append", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json_array_insert", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json_array_length", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json_array_prepend", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json_array_remove", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json_array_rotate", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json_array_tail", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json_array_take", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json_contains", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json_deserialize_sql", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json_execute_serialized_sql", "json", CatalogType::PRAGMA_FUNCTION_ENTRY},
Expand All @@ -202,6 +209,9 @@ static constexpr ExtensionFunctionEntry EXTENSION_FUNCTIONS[] = {
{"json_group_structure", "json", CatalogType::MACRO_ENTRY},
{"json_keys", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json_merge_patch", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json_obj_add", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json_obj_rename_key", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json_obj_replace", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json_object", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json_quote", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
{"json_serialize_plan", "json", CatalogType::SCALAR_FUNCTION_ENTRY},
Expand Down

0 comments on commit bbb341d

Please sign in to comment.