Returns 5 sorted string dictionary batches each with 50 rows with this schema. a: Dictionary , b: Dictionary ,
()
| 1057 | /// a: Dictionary<Utf8, Int32>, |
| 1058 | /// b: Dictionary<Utf8, Int32>, |
| 1059 | fn dict_batches() -> Vec<RecordBatch> { |
| 1060 | static DICT_BATCHES: LazyLock<Vec<RecordBatch>> = LazyLock::new(make_dict_batches); |
| 1061 | DICT_BATCHES.clone() |
| 1062 | } |
| 1063 | |
| 1064 | fn make_dict_batches() -> Vec<RecordBatch> { |
| 1065 | let batch_size = 50; |
no test coverage detected
searching dependent graphs…