Skip to content

Commit

Permalink
fix: spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
Blizzara committed Mar 5, 2025
1 parent eb371c8 commit ad8c73b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ class ToSubstraitRel extends AbstractLogicalPlanVisitor with Logging {
builder.count(limit)
}

builder.build()
builder.build()
}

override def visitGlobalLimit(p: GlobalLimit): relation.Rel = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ trait SubstraitPlanTestBase { self: SharedSparkSession =>

val extensionCollector = new ExtensionCollector;
val proto = new RelProtoConverter(extensionCollector).toProto(pojoRel)
val pojoFromProto = new ProtoRelConverter(extensionCollector, SparkExtension.COLLECTION).from(proto)
val pojoFromProto =
new ProtoRelConverter(extensionCollector, SparkExtension.COLLECTION).from(proto)
assertResult(pojoRel)(pojoFromProto)

pojoRel2.shouldEqualPlainly(pojoRel)
Expand Down

0 comments on commit ad8c73b

Please sign in to comment.