(&self, _input_schema: &Schema)
| 86 | } |
| 87 | |
| 88 | fn nullable(&self, _input_schema: &Schema) -> Result<bool> { |
| 89 | Ok(self.field.is_nullable()) |
| 90 | } |
| 91 | |
| 92 | fn evaluate(&self, batch: &RecordBatch) -> Result<ColumnarValue> { |
| 93 | if self.index >= batch.num_columns() { |
nothing calls this directly
no test coverage detected