| 384 | } |
| 385 | |
| 386 | uint64_t getDataBlockSize(uint32_t numBytes) { |
| 387 | if (numBytes < TEMP_PAGE_SIZE) { |
| 388 | return TEMP_PAGE_SIZE; |
| 389 | } |
| 390 | return numBytes + 1; |
| 391 | } |
| 392 | |
| 393 | uint8_t* FactorizedTable::allocateUnflatTupleBlock(uint32_t numBytes) { |
| 394 | if (unFlatTupleBlockCollection->isEmpty()) { |
no outgoing calls
no test coverage detected