()
| 1417 | } |
| 1418 | |
| 1419 | fn null_partition_bytes() -> Vec<u8> { |
| 1420 | let mut builder = BinaryRowBuilder::new(1); |
| 1421 | builder.set_null_at(0); |
| 1422 | builder.build_serialized() |
| 1423 | } |
| 1424 | |
| 1425 | fn test_row_tracking_schema() -> TableSchema { |
| 1426 | use crate::spec::{DataType, IntType, Schema, VarCharType}; |
nothing calls this directly
no test coverage detected