The SerializedPage layout is: numRows(4) | codec(1) | uncompressedSize(4) | compressedSize(4) | checksum(8) | data
| 3620 | // numRows(4) | codec(1) | uncompressedSize(4) | compressedSize(4) | |
| 3621 | // checksum(8) | data |
| 3622 | void flush(OutputStream* out) override { |
| 3623 | flushStreams(streams_, numRows_, *streamArena_, *codec_, out); |
| 3624 | } |
| 3625 | |
| 3626 | void flushEncoded(const RowVectorPtr& vector, OutputStream* out) { |
| 3627 | BOLT_CHECK_EQ(0, numRows_); |
nothing calls this directly
no test coverage detected