1
0

[HUDI-3179] Extracted common AbstractHoodieTableFileIndex to be shared across engines (#4520)

This commit is contained in:
Alexey Kudinkin
2022-01-16 22:46:20 -08:00
committed by GitHub
parent ed92c217ed
commit 75caa7d3d8
10 changed files with 732 additions and 520 deletions

View File

@@ -143,7 +143,7 @@ class Spark3ParsePartitionUtil(conf: SQLConf) extends SparkParsePartitionUtil {
(None, Some(path))
} else {
val (columnNames, values) = columns.reverse.unzip
(Some(PartitionValues(columnNames.toSeq, values.toSeq)), Some(currentPath))
(Some(PartitionValues(columnNames, values)), Some(currentPath))
}
}