Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/include/execution/executors/aggregation_executor.h
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ class AggregationExecutor : public AbstractExecutor {

/**
* Yield the next tuple from the insert.
* @param[out] tuple The next tuple produced by the insert
* @param[out] rid The next tuple RID produced by the insert
* @param[out] tuple The next tuple produced by the aggregation
* @param[out] rid The next tuple RID produced by the aggregation
* @return `true` if a tuple was produced, `false` if there are no more tuples
*/
auto Next(Tuple *tuple, RID *rid) -> bool override;
Expand Down
2 changes: 1 addition & 1 deletion src/include/execution/executors/delete_executor.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class DeleteExecutor : public AbstractExecutor {
/**
* Yield the number of rows deleted from the table.
* @param[out] tuple The integer tuple indicating the number of rows deleted from the table
* @param[out] rid The next tuple RID produced by the update (ignore, not used)
* @param[out] rid The next tuple RID produced by the delete (ignore, not used)
* @return `true` if a tuple was produced, `false` if there are no more tuples
*
* NOTE: DeleteExecutor::Next() does not use the `rid` out-parameter.
Expand Down