We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93f438d commit 4dadef1Copy full SHA for 4dadef1
sql/core/src/main/scala/org/apache/spark/sql/parquet/ParquetConverter.scala
@@ -490,10 +490,10 @@ private[parquet] object CatalystTimestampConverter {
490
}
491
parquetTsCalendar.get
492
493
- val NANOS_PER_SECOND = 1000000000
494
- val SECONDS_PER_MINUTE = 60
495
- val MINUTES_PER_HOUR = 60
496
- val NANOS_PER_MILLI = 1000000
+ val NANOS_PER_SECOND: Long = 1000000000
+ val SECONDS_PER_MINUTE: Long = 60
+ val MINUTES_PER_HOUR: Long = 60
+ val NANOS_PER_MILLI: Long = 1000000
497
498
def convertToTimestamp(value: Binary): Timestamp = {
499
val nt = NanoTime.fromBinary(value)
0 commit comments