acvictor commented on code in PR #6029:
URL: https://github.com/apache/incubator-gluten/pull/6029#discussion_r1632963998


##########
shims/common/src/main/scala/org/apache/gluten/sql/shims/SparkShims.scala:
##########
@@ -207,6 +207,11 @@ trait SparkShims {
 
   def attributesFromStruct(structType: StructType): Seq[Attribute]
 
+  // Spark 3.3 and later only have file size and modification time in 
PartitionedFile
+  def getFileSizeAndModificationTime(file: PartitionedFile): (Option[Long], 
Option[Long]) = {
+    (None, None)
+  }
+

Review Comment:
   Updated, thank you!



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to