1 | #include "duckdb/function/scalar/operators.hpp" |
---|---|
2 | #include "duckdb/common/exception.hpp" |
3 | |
4 | namespace duckdb { |
5 | |
6 | void BuiltinFunctions::RegisterOperators() { |
7 | Register<AddFun>(); |
8 | Register<SubtractFun>(); |
9 | Register<MultiplyFun>(); |
10 | Register<DivideFun>(); |
11 | Register<ModFun>(); |
12 | } |
13 | |
14 | } // namespace duckdb |
15 |