Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Jan 20, 2025
1 parent 582f7a9 commit 3d14bc0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ object ParquetGenerator {
val schema = StructType(fields)

// generate columnar data
val cols: Seq[Seq[Any]] = fields.map(f => generateColumn(r, f.dataType, numRows, options)).toSeq
val cols: Seq[Seq[Any]] =
fields.map(f => generateColumn(r, f.dataType, numRows, options)).toSeq

// convert to rows
val rows = Range(0, numRows).map(rowIndex => {
Expand Down

0 comments on commit 3d14bc0

Please sign in to comment.