File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/include/execution/executors Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -164,8 +164,8 @@ class AggregationExecutor : public AbstractExecutor {
164164
165165 /* *
166166 * Yield the next tuple from the insert.
167- * @param[out] tuple The next tuple produced by the insert
168- * @param[out] rid The next tuple RID produced by the insert
167+ * @param[out] tuple The next tuple produced by the aggregation
168+ * @param[out] rid The next tuple RID produced by the aggregation
169169 * @return `true` if a tuple was produced, `false` if there are no more tuples
170170 */
171171 auto Next (Tuple *tuple, RID *rid) -> bool override ;
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ class DeleteExecutor : public AbstractExecutor {
4444 /* *
4545 * Yield the number of rows deleted from the table.
4646 * @param[out] tuple The integer tuple indicating the number of rows deleted from the table
47- * @param[out] rid The next tuple RID produced by the update (ignore, not used)
47+ * @param[out] rid The next tuple RID produced by the delete (ignore, not used)
4848 * @return `true` if a tuple was produced, `false` if there are no more tuples
4949 *
5050 * NOTE: DeleteExecutor::Next() does not use the `rid` out-parameter.
You can’t perform that action at this time.
0 commit comments