1 | #include "duckdb/function/scalar/nested_functions.hpp" |
---|---|
2 | |
3 | using namespace std; |
4 | |
5 | namespace duckdb { |
6 | |
7 | void BuiltinFunctions::RegisterNestedFunctions() { |
8 | Register<StructPackFun>(); |
9 | Register<StructExtractFun>(); |
10 | Register<ListValueFun>(); |
11 | } |
12 | |
13 | } // namespace duckdb |
14 |