Validate that row contains the expected value
| 80 | |
| 81 | // Validate that row contains the expected value |
| 82 | void ValidateMatch(TupleRow* row, int32_t expected) { |
| 83 | EXPECT_EQ(expected, *reinterpret_cast<int32_t*>(row->GetTuple(0))); |
| 84 | } |
| 85 | |
| 86 | void FullScan(RowBatchList* list, int start, int end) { |
| 87 | EXPECT_LT(start, end); |