HyukjinKwon commented on code in PR #38659: URL: https://github.com/apache/spark/pull/38659#discussion_r1028942267
########## connector/connect/src/test/scala/org/apache/spark/sql/connect/planner/SparkConnectProtoSuite.scala: ########## @@ -44,14 +47,18 @@ class SparkConnectProtoSuite extends PlanTest with SparkConnectPlanTest { lazy val connectTestRelation = createLocalRelationProto( - Seq(AttributeReference("id", IntegerType)(), AttributeReference("name", StringType)())) + Seq(AttributeReference("id", IntegerType)(), AttributeReference("name", StringType)()), + Seq()) lazy val connectTestRelation2 = createLocalRelationProto( - Seq(AttributeReference("id", IntegerType)(), AttributeReference("name", StringType)())) + Seq(AttributeReference("id", IntegerType)(), AttributeReference("name", StringType)()), + Seq()) Review Comment: ```suggestion Seq.empty) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org