Skip to content

Commit ec28c71

Browse files
committed
change method name
1 parent 6410857 commit ec28c71

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

velox/connectors/clp/ClpDataSource.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

velox/connectors/clp/search_lib/ClpCursor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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_) {

velox/connectors/clp/search_lib/ClpCursor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)