diff --git a/cpp/core/operators/c2r/ColumnarToRow.h b/cpp/core/operators/c2r/ColumnarToRow.h index 398c7f8f64d9..062a863f734c 100644 --- a/cpp/core/operators/c2r/ColumnarToRow.h +++ b/cpp/core/operators/c2r/ColumnarToRow.h @@ -31,7 +31,7 @@ class ColumnarToRowConverter { // We will start conversion from the 'rowId' row of 'cb'. The maximum memory consumption during the grabbing and // swapping process is 'memoryThreshold' bytes. The number of rows successfully converted is stored in the 'numRows_' // variable. - virtual void convert(std::shared_ptr cb = nullptr, int64_t rowId = 0) = 0; + virtual void convert(std::shared_ptr cb = nullptr, int64_t startRow = 0) = 0; virtual int32_t numRows() { return numRows_;