File tree 3 files changed +3
-3
lines changed 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(
157
157
ContinueFuture& future) {
158
158
std::shared_ptr<std::vector<uint64_t >> filteredRows =
159
159
std::make_shared<std::vector<uint64_t >>();
160
- auto rowsScanned = cursor_->fetch_next (size, filteredRows);
160
+ auto rowsScanned = cursor_->fetchNext (size, filteredRows);
161
161
auto rowsFiltered = filteredRows->size ();
162
162
if (rowsFiltered == 0 ) {
163
163
return nullptr ;
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ void ClpCursor::executeQuery(
50
50
errorCode_ = preprocessQuery ();
51
51
}
52
52
53
- uint64_t ClpCursor::fetch_next (
53
+ uint64_t ClpCursor::fetchNext (
54
54
uint64_t numRows,
55
55
const std::shared_ptr<std::vector<uint64_t >>& filteredRowIndices) {
56
56
if (ErrorCode::Success != errorCode_) {
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ class ClpCursor {
78
78
* @param filteredRowIndices A vector of row indices that match the filter.
79
79
* @return The number of rows scanned.
80
80
*/
81
- uint64_t fetch_next (
81
+ uint64_t fetchNext (
82
82
uint64_t numRows,
83
83
const std::shared_ptr<std::vector<uint64_t >>& filteredRowIndices);
84
84
You can’t perform that action at this time.
0 commit comments