Skip to content

Commit

Permalink
Extract all calls to currentRow.setNullAt(i) in
Browse files Browse the repository at this point in the history
ParquetRowConverter.start() into their own loop for clarity
  • Loading branch information
mallman committed Nov 6, 2018
1 parent 6b19f57 commit 598d965
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -206,9 +206,9 @@ private[parquet] class ParquetRowConverter(
var i = 0
while (i < fieldConverters.length) {
fieldConverters(i).updater.start()
currentRow.setNullAt(i)
i += 1
}
i = 0
while (i < currentRow.numFields) {
currentRow.setNullAt(i)
i += 1
Expand Down

0 comments on commit 598d965

Please sign in to comment.