| 1 | #include "duckdb/function/scalar/trigonometric_functions.hpp" |
|---|---|
| 2 | #include "duckdb/common/vector_operations/vector_operations.hpp" |
| 3 | #include "duckdb/common/exception.hpp" |
| 4 | |
| 5 | using namespace std; |
| 6 | |
| 7 | namespace duckdb { |
| 8 | |
| 9 | void BuiltinFunctions::RegisterTrigonometricsFunctions() { |
| 10 | Register<SinFun>(); |
| 11 | Register<CosFun>(); |
| 12 | Register<TanFun>(); |
| 13 | Register<AsinFun>(); |
| 14 | Register<AcosFun>(); |
| 15 | Register<AtanFun>(); |
| 16 | Register<CotFun>(); |
| 17 | Register<Atan2Fun>(); |
| 18 | } |
| 19 | |
| 20 | } // namespace duckdb |
| 21 |