Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ nmcp = "1.6.0"
picocli = "4.7.7"
postgresql = "42.7.11"
protobuf-plugin = "0.10.0"
protobuf = "3.25.9"
protobuf = "4.35.1"
scala-2-12 = "2.12.20"
scala-2-13 = "2.13.18"
scalatest-2-12 = "3.2.20"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
package io.substrait.isthmus.cli;

import com.google.protobuf.Empty;
import com.google.protobuf.GeneratedMessageV3;
import com.google.protobuf.MessageLite;
import com.google.protobuf.GeneratedMessage;
import com.google.protobuf.ProtocolMessageEnum;
import io.github.classgraph.ClassGraph;
import io.github.classgraph.ClassInfoList;
Expand Down Expand Up @@ -61,8 +60,8 @@ public void beforeAnalysis(BeforeAnalysisAccess access) {

try (PackageScanner substrait = new PackageScanner("io.substrait")) {
// protobuf items
substrait.registerByParent(GeneratedMessageV3.class);
substrait.registerByParent(MessageLite.Builder.class);
substrait.registerByParent(GeneratedMessage.class);
substrait.registerByParent(GeneratedMessage.Builder.class);
substrait.registerByParent(ProtocolMessageEnum.class);

// Substrait immutables.
Expand Down
Loading