()
| 925 | |
| 926 | #[test] |
| 927 | fn new_exec_with_batches() { |
| 928 | let batch = make_partition(7); |
| 929 | let schema = batch.schema(); |
| 930 | let batches = vec![batch.clone(), batch]; |
| 931 | let _exec = MemorySourceConfig::try_new_from_batches(schema, batches).unwrap(); |
| 932 | } |
| 933 | |
| 934 | #[test] |
| 935 | fn new_exec_with_batches_empty() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…