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

fix(stdlib): panic in chunking outer joins #5404

Merged
merged 1 commit into from
Mar 30, 2023
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
1 change: 1 addition & 0 deletions libflux/go/libflux/buildinfo.gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ var sourceHashes = map[string]string{
"stdlib/interpolate/interpolate_test.flux": "f938f88db50a5ec8cddb765ac9e8836ef0aff2694c87778a2294810761cddef8",
"stdlib/join/join.flux": "379330a0fa31a2a932ec94dbc84295b031832da08a416e6a57f2b581fc0d45d0",
"stdlib/join/join_test.flux": "d15c78ec8529e5962950bb510e791b70527174811877b7e4cb10af5ec4338efa",
"stdlib/join/large_join_test.flux": "b879c2c91f9415370bc21ff64f9b95171d9b08dceec995b1d92950345782e7d6",
"stdlib/json/json.flux": "180dec063b8042db9fafb7a9e633a00451f0343ccf565ed8bf9650bebcd12674",
"stdlib/kafka/kafka.flux": "c93e5a56f16d56d69f905e8fd3b02156ccb41742bb513c9d6fd82b26187ab5e8",
"stdlib/math/math.flux": "590b501bc712d134fae22c966dc8cec4722b2f5e05853474017ab4d0d93406be",
Expand Down
2 changes: 1 addition & 1 deletion stdlib/join/join_fn.go
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ func splitChunk(c table.Chunk) []table.Chunk {
for ; curSize > 0; i++ {
if curSize > bufferSize {
start = i * bufferSize
stop = bufferSize
stop = start + bufferSize
curSize -= bufferSize
} else {
start = i * bufferSize
Expand Down
Loading