| 67 | } |
| 68 | |
| 69 | CompressionKind convertCompressionKind(const proto::PostScript& ps) { |
| 70 | if (ps.has_compression()) { |
| 71 | return static_cast<CompressionKind>(ps.compression()); |
| 72 | } else { |
| 73 | throw ParseError("Unknown compression type"); |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | std::string ColumnSelector::toDotColumnPath() { |
| 78 | if (columns_.empty()) { |
no test coverage detected