Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add multi-column support to UpdateBy RollingFormula() operator #6143

Merged
merged 17 commits into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public void clear() {
// region object-bulk-clear
final int storageHead = (int) (head & mask);
final int size = size();
// firstLen is either the size of the ring buffer oe the distance from head to the end of the storage array.
// firstLen is either the size of the ring buffer or the distance from head to the end of the storage array.
final int firstLen = Math.min(storage.length - storageHead, size);
// secondLen is the number of elements remaining from the first clear.
final int secondLen = size - firstLen;
Expand Down
Loading