| 53 | |
| 54 | |
| 55 | ASTPtr ICompressionCodec::getFullCodecDesc() const |
| 56 | { |
| 57 | if (full_codec_desc == nullptr) |
| 58 | throw Exception("Codec description is not prepared", ErrorCodes::LOGICAL_ERROR); |
| 59 | |
| 60 | return full_codec_desc; |
| 61 | } |
| 62 | |
| 63 | |
| 64 | ASTPtr ICompressionCodec::getCodecDesc() const |
no test coverage detected