Skip to content

Commit

Permalink
fix: spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
Blizzara committed Nov 21, 2024
1 parent 05ce603 commit 13a3b99
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 @@ -214,7 +214,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 13a3b99

Please sign in to comment.