//===----------------------------------------------------------------------===// // DuckDB // // duckdb/common/operator/aggregate_operators.hpp // // //===----------------------------------------------------------------------===// #pragma once #include #include #include #include "duckdb/common/operator/comparison_operators.hpp" namespace duckdb { struct Min { template static inline T Operation(T left, T right) { return LessThan::Operation(left, right) ? left : right; } }; struct Max { template static inline T Operation(T left, T right) { return GreaterThan::Operation(left, right) ? left : right; } }; } // namespace duckdb