| 9 | namespace function { |
| 10 | |
| 11 | std::unique_ptr<FunctionBindData> FunctionBindData::getSimpleBindData( |
| 12 | const expression_vector& params, const LogicalType& resultType) { |
| 13 | auto paramTypes = ExpressionUtil::getDataTypes(params); |
| 14 | return std::make_unique<FunctionBindData>(std::move(paramTypes), resultType.copy()); |
| 15 | } |
| 16 | |
| 17 | } // namespace function |
| 18 | } // namespace lbug |