(num: i32)
| 51 | } |
| 52 | |
| 53 | fn t_batch(num: i32) -> RecordBatch { |
| 54 | let value: Vec<i32> = (0..num).collect(); |
| 55 | let c1: ArrayRef = Arc::new(Int32Array::from(value)); |
| 56 | RecordBatch::try_from_iter(vec![("c1", c1)]).unwrap() |
| 57 | } |
| 58 | |
| 59 | fn create_context(num: i32) -> datafusion_common::Result<Arc<Mutex<SessionContext>>> { |
| 60 | let ctx = SessionContext::new(); |
no test coverage detected
searching dependent graphs…