Skip to content

Commit

Permalink
Fix indentations
Browse files Browse the repository at this point in the history
Signed-off-by: Nghia Truong <nghiat@nvidia.com>
  • Loading branch information
ttnghia committed Nov 6, 2023
1 parent b87493c commit 321e516
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ object GpuParquetScan {
}

def throwIfRebaseNeeded(table: Table, dateRebaseMode: DateTimeRebaseMode,
timestampRebaseMode: DateTimeRebaseMode): Unit = {
timestampRebaseMode: DateTimeRebaseMode): Unit = {
(0 until table.getNumberOfColumns).foreach { i =>
val col = table.getColumn(i)
if (dateRebaseMode != DateTimeRebaseCorrected &&
Expand Down Expand Up @@ -1810,8 +1810,8 @@ private case class ParquetDataBlock(dataBlock: BlockMetaData) extends DataBlockB

/** Parquet extra information containing rebase modes and whether there is int96 timestamp */
class ParquetExtraInfo(val dateRebaseMode: DateTimeRebaseMode,
val timestampRebaseMode: DateTimeRebaseMode,
val hasInt96Timestamps: Boolean) extends ExtraInfo
val timestampRebaseMode: DateTimeRebaseMode,
val hasInt96Timestamps: Boolean) extends ExtraInfo

// contains meta about a single block in a file
private case class ParquetSingleDataBlockMeta(
Expand Down

0 comments on commit 321e516

Please sign in to comment.