()
| 84 | } |
| 85 | |
| 86 | fn create_record_batch() -> Result<RecordBatch> { |
| 87 | let id_array = UInt8Array::from(vec![1]); |
| 88 | let account_array = UInt64Array::from(vec![9000]); |
| 89 | |
| 90 | Ok(RecordBatch::try_new( |
| 91 | get_schema(), |
| 92 | vec![Arc::new(id_array), Arc::new(account_array)], |
| 93 | ) |
| 94 | .unwrap()) |
| 95 | } |
| 96 | |
| 97 | fn get_schema() -> SchemaRef { |
| 98 | SchemaRef::new(Schema::new(vec![ |
nothing calls this directly
no test coverage detected
searching dependent graphs…