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