| 1098 | ColumnChunkData::~ColumnChunkData() = default; |
| 1099 | |
| 1100 | uint64_t ColumnChunkData::getMinimumSizeOnDisk() const { |
| 1101 | if (hasNullData() && nullData->getSizeOnDisk() > 0) { |
| 1102 | return 2 * LBUG_PAGE_SIZE; |
| 1103 | } |
| 1104 | return LBUG_PAGE_SIZE; |
| 1105 | } |
| 1106 | |
| 1107 | } // namespace storage |
| 1108 | } // namespace lbug |
nothing calls this directly
no test coverage detected