()
| 57 | |
| 58 | #[test] |
| 59 | fn test_eq() { |
| 60 | // id = '2' |
| 61 | evaluate_expr_test( |
| 62 | col("id").eq(lit("2")), |
| 63 | vec![ |
| 64 | "+-------+", |
| 65 | "| expr |", |
| 66 | "+-------+", |
| 67 | "| false |", |
| 68 | "| true |", |
| 69 | "| false |", |
| 70 | "+-------+", |
| 71 | ], |
| 72 | ); |
| 73 | } |
| 74 | |
| 75 | #[test] |
| 76 | fn test_eq_with_coercion() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…