()
| 107 | |
| 108 | #[test] |
| 109 | fn test_get_field_null() { |
| 110 | #[rustfmt::skip] |
| 111 | evaluate_expr_test( |
| 112 | lit(ScalarValue::Null).field("a"), |
| 113 | vec![ |
| 114 | "+------+", |
| 115 | "| expr |", |
| 116 | "+------+", |
| 117 | "| |", |
| 118 | "+------+", |
| 119 | ], |
| 120 | ); |
| 121 | } |
| 122 | |
| 123 | #[test] |
| 124 | fn test_nested_get_field() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…