Skip to content

Commit

Permalink
Fix parquet options builder calls (#4331)
Browse files Browse the repository at this point in the history
Signed-off-by: Rong Ou <rong.ou@gmail.com>
  • Loading branch information
rongou authored Dec 8, 2021
1 parent 4914be0 commit 61f51ff
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1100,7 +1100,6 @@ class MultiFileParquetPartitionReader(
isSchemaCaseSensitive)
val parseOpts = ParquetOptions.builder()
.withTimeUnit(DType.TIMESTAMP_MICROSECONDS)
.enableStrictDecimalType(true)
.includeColumn(includeColumns: _*).build()

// About to start using the GPU
Expand Down Expand Up @@ -1374,7 +1373,6 @@ class MultiFileCloudParquetPartitionReader(
isSchemaCaseSensitive)
val parseOpts = ParquetOptions.builder()
.withTimeUnit(DType.TIMESTAMP_MICROSECONDS)
.enableStrictDecimalType(true)
.includeColumn(includeColumns: _*).build()

// about to start using the GPU
Expand Down Expand Up @@ -1515,7 +1513,6 @@ class ParquetPartitionReader(
isSchemaCaseSensitive)
val parseOpts = ParquetOptions.builder()
.withTimeUnit(DType.TIMESTAMP_MICROSECONDS)
.enableStrictDecimalType(true)
.includeColumn(includeColumns: _*).build()

// about to start using the GPU
Expand Down

0 comments on commit 61f51ff

Please sign in to comment.