dongjoon-hyun commented on code in PR #50792: URL: https://github.com/apache/spark/pull/50792#discussion_r2076236417
########## sql/catalyst/src/test/scala/org/apache/spark/sql/connector/catalog/InMemoryTable.scala: ########## @@ -43,10 +43,22 @@ class InMemoryTable( advisoryPartitionSize: Option[Long] = None, isDistributionStrictlyRequired: Boolean = true, override val numRowsPerSplit: Int = Int.MaxValue) - extends InMemoryBaseTable(name, schema, partitioning, properties, distribution, + extends InMemoryBaseTable(name, columns, partitioning, properties, distribution, ordering, numPartitions, advisoryPartitionSize, isDistributionStrictlyRequired, numRowsPerSplit) with SupportsDelete { + def this( + name: String, + schema: StructType, Review Comment: Thank you for adding this constructor. -- 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