Make the code in Join less disgusting

This commit is contained in:
Alexey Milovidov 2023-03-19 07:35:56 +01:00
parent 0ec04cca5e
commit 3655667188

View File

@ -63,7 +63,8 @@ struct RowRefList : RowRef
return batch;
}
row_refs[size++] = std::move(row_ref);
row_refs[size] = std::move(row_ref);
++size;
return this;
}
};