(input_expr: Expr, expected_expr: Expr)
| 104 | } |
| 105 | |
| 106 | fn test_evaluate(input_expr: Expr, expected_expr: Expr) { |
| 107 | test_evaluate_with_start_time(input_expr, expected_expr, &Utc::now()) |
| 108 | } |
| 109 | |
| 110 | // Make a UDF that adds its two values together, with the specified volatility |
| 111 | fn make_udf_add(volatility: Volatility) -> Arc<ScalarUDF> { |
no test coverage detected
searching dependent graphs…