We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80724e0 commit e44162dCopy full SHA for e44162d
sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/FileFormat.scala
@@ -235,11 +235,6 @@ object FileFormat {
235
// the modificationTime from the file is in millisecond,
236
// while internally, the TimestampType `file_modification_time` is stored in microsecond
237
row.update(i, fileModificationTime * 1000L)
238
- case ROW_INDEX =>
239
- // Reserve the spot in the row for a LongType value. The metadata fields that have
240
- // identical values for each row of the file are set by this function, while fields that
241
- // have different values (such as row index) are set separately.
242
- row.update(i, -1L)
243
}
244
245
row
0 commit comments