()
| 74 | |
| 75 | #[test] |
| 76 | fn test_eq_with_coercion() { |
| 77 | // id = 2 (need to coerce the 2 to '2' to evaluate) |
| 78 | evaluate_expr_test( |
| 79 | col("id").eq(lit(2i32)), |
| 80 | vec![ |
| 81 | "+-------+", |
| 82 | "| expr |", |
| 83 | "+-------+", |
| 84 | "| false |", |
| 85 | "| true |", |
| 86 | "| false |", |
| 87 | "+-------+", |
| 88 | ], |
| 89 | ); |
| 90 | } |
| 91 | |
| 92 | #[test] |
| 93 | fn test_get_field() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…