| 253 | } |
| 254 | |
| 255 | BatchesWithSchema MakeBasicBatches() { |
| 256 | BatchesWithSchema out; |
| 257 | out.batches = { |
| 258 | ExecBatchFromJSON({int32(), boolean()}, "[[null, true], [4, false]]"), |
| 259 | ExecBatchFromJSON({int32(), boolean()}, "[[5, null], [6, false], [7, false]]")}; |
| 260 | out.schema = schema({field("i32", int32()), field("bool", boolean())}); |
| 261 | return out; |
| 262 | } |
| 263 | |
| 264 | BatchesWithSchema MakeNestedBatches() { |
| 265 | auto ty = struct_({field("i32", int32()), field("bool", boolean())}); |
no test coverage detected