| 113 | } |
| 114 | |
| 115 | Status WritePadded(io::OutputStream* stream, const uint8_t* data, int64_t length, |
| 116 | int64_t* bytes_written) { |
| 117 | return WritePaddedWithOffset(stream, data, /*bit_offset=*/0, length, bytes_written); |
| 118 | } |
| 119 | |
| 120 | struct ColumnType { |
| 121 | enum type { PRIMITIVE, CATEGORY, TIMESTAMP, DATE, TIME }; |
no test coverage detected