| 94 | static auto N(double n) { return MakeValue<Numeric>(n); } |
| 95 | static auto T(const std::string& v) { return MakeValue<StringArray>(util::Split(v, ",")); } |
| 96 | static auto V(const std::vector<double>& vals) { return MakeValue<NumericArray>(vals); } |
| 97 | |
| 98 | TEST(PlanExecutorTest, TopN) { |
| 99 | std::vector<ExecutorNode::RowType> data{ |