Skip to content

Commit

Permalink
Fix fixed length calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcdonald3 committed Jun 12, 2024
1 parent 8540fc9 commit d9d73fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ParquetMsg.chpl
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,7 @@ module ParquetMsg {
byteSizes = calcStrSizesAndOffset(entrySeg.a, filenames, sizes, dsetname);
entrySeg.a = (+ scan entrySeg.a) - entrySeg.a;
} else {
entrySeg.a = fixedLen;
entrySeg.a = fixedLen+1;
entrySeg.a = (+ scan entrySeg.a) - entrySeg.a;
byteSizes = fixedLen*len;
}
Expand Down

0 comments on commit d9d73fa

Please sign in to comment.