Skip to content

Commit

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

* Internal method doesn't need scaladocs

Signed-off-by: Raza Jafri <[email protected]>

* added asterisk

Signed-off-by: Raza Jafri <[email protected]>

Co-authored-by: Raza Jafri <[email protected]>
  • Loading branch information
razajafri and razajafri authored May 28, 2021
1 parent 8c94951 commit bc2c839
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 bc2c839

Please sign in to comment.