zhouyuan commented on code in PR #11743:
URL: https://github.com/apache/gluten/pull/11743#discussion_r3023472233
##########
backends-velox/src-iceberg/main/scala/org/apache/gluten/connector/write/IcebergDataWriteFactory.scala:
##########
@@ -117,4 +120,14 @@ case class IcebergDataWriteFactory(
cSchema.close()
(writer, jniWrapper)
}
+
+ private def filterMetadataColumns(schema: StructType): StructType = {
+ val filteredFields = schema.fields.filterNot {
+ field =>
+ {
+ SparkShimLoader.getSparkShims.isRowIndexMetadataColumn(field.name);
Review Comment:
it looks like this method is for delta only
--
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]