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 08ad985
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 @@ -811,7 +811,7 @@ module ParquetMsg {
var strictTypes: bool = msgArgs.get("strict_types").getBoolValue();

var useNew = msgArgs.get('use_new').getBoolValue();
var fixedLen = msgArgs.get('fixed_len').getIntValue();
var fixedLen = msgArgs.get('fixed_len').getIntValue() + 1;

var allowErrors: bool = msgArgs.get("allow_errors").getBoolValue(); // default is false
var hasNonFloatNulls: bool = msgArgs.get("has_non_float_nulls").getBoolValue();
Expand Down

0 comments on commit 08ad985

Please sign in to comment.