| 343 | } |
| 344 | |
| 345 | off_t CompressedReadBufferBase::getPosition() const |
| 346 | { |
| 347 | throw Exception(ErrorCodes::LOGICAL_ERROR, "CompressedReadBufferBase does not implement getPosition"); |
| 348 | } |
| 349 | |
| 350 | CompressedReadBufferBase::~CompressedReadBufferBase() = default; /// Proper destruction of unique_ptr of forward-declared type. |
| 351 |