Skip to content

Commit

Permalink
Remove scaladoc on an internal method to avoid warning during build (N…
Browse files Browse the repository at this point in the history
…VIDIA#2534)

* Internal method doesn't need scaladocs

Signed-off-by: Raza Jafri <rjafri@nvidia.com>

* added asterisk

Signed-off-by: Raza Jafri <rjafri@nvidia.com>

Co-authored-by: Raza Jafri <rjafri@nvidia.com>
  • Loading branch information
razajafri and razajafri authored May 28, 2021
1 parent 9a34857 commit 0ad2024
Showing 1 changed file with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -724,14 +724,10 @@ trait ParquetPartitionReaderBase extends Logging with Arm with ScanWithMetrics
* @return
*/
private def convertDecimal64ToDecimal32Wrapper(cv: ColumnVector, precision: Int): ColumnVector = {
/**
* This method returns a ColumnView that should be copied out to a ColumnVector before closing
* the `toClose` views otherwise it will close the returned view and it's children as well.
*
* @param cv ColumnView to be checked if it has Decimal32 values stored as Decimal64
* @param precision precision list of all the Decimal columns in this ColumnVector
* @param toClose The ColumnViews to be closed after this method is done. This will also
* contain the returned view
/*
* 'convertDecimal64ToDecimal32' method returns a ColumnView that should be copied out to a
* ColumnVector before closing the `toClose` views otherwise it will close the returned view
* and it's children as well.
*/
def convertDecimal64ToDecimal32(
cv: ColumnView,
Expand Down

0 comments on commit 0ad2024

Please sign in to comment.