Skip to content

Commit

Permalink
Update ColumnarToRow.h
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixYBW authored Aug 1, 2024
1 parent 95dc709 commit 68fc73c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/core/operators/c2r/ColumnarToRow.h
Original file line number Diff line number Diff line change
Expand Up @@ -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<ColumnarBatch> cb = nullptr, int64_t rowId = 0) = 0;
virtual void convert(std::shared_ptr<ColumnarBatch> cb = nullptr, int64_t startRow = 0) = 0;

virtual int32_t numRows() {
return numRows_;
Expand Down

0 comments on commit 68fc73c

Please sign in to comment.