File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ std::optional<RowVectorPtr> ClpDataSource::next(
157157 ContinueFuture& future) {
158158 std::shared_ptr<std::vector<uint64_t >> filteredRows =
159159 std::make_shared<std::vector<uint64_t >>();
160- auto rowsScanned = cursor_->fetch_next (size, filteredRows);
160+ auto rowsScanned = cursor_->fetchNext (size, filteredRows);
161161 auto rowsFiltered = filteredRows->size ();
162162 if (rowsFiltered == 0 ) {
163163 return nullptr ;
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ void ClpCursor::executeQuery(
5050 errorCode_ = preprocessQuery ();
5151}
5252
53- uint64_t ClpCursor::fetch_next (
53+ uint64_t ClpCursor::fetchNext (
5454 uint64_t numRows,
5555 const std::shared_ptr<std::vector<uint64_t >>& filteredRowIndices) {
5656 if (ErrorCode::Success != errorCode_) {
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ class ClpCursor {
7878 * @param filteredRowIndices A vector of row indices that match the filter.
7979 * @return The number of rows scanned.
8080 */
81- uint64_t fetch_next (
81+ uint64_t fetchNext (
8282 uint64_t numRows,
8383 const std::shared_ptr<std::vector<uint64_t >>& filteredRowIndices);
8484
You can’t perform that action at this time.
0 commit comments