throw new InvalidParameterValueException("group does not use STORAGE_FORMAT protobuf");
FileDescriptorProto fileProto = ((ProtobufStorageDescription)storage).getFileProto();
try {
tempFile = File.createTempFile("group", ".proto");
try (FileWriter writer = new FileWriter(tempFile)) {
new ProtobufDecompiler(writer).decompile(fileProto);
}
reader = new BufferedReader(new FileReader(tempFile));
}
catch (IOException ex) {
throw new AkibanInternalException("decompiling error", ex);