Skip to content

Commit

Permalink
Fix integer column bug
Browse files Browse the repository at this point in the history
  • Loading branch information
rfdavid committed Sep 18, 2023
1 parent e4560cb commit ea41a5f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ class ParquetColumnWriter {
// Properties for nested lists and structs
bool isListStarting;

int currentColumn;
int currentParquetColumn;
int totalColumns;
int currentColumn = 0;
int currentParquetColumn = 0;
int totalColumns = 0;

// define the writers
parquet::RowGroupWriter* rowGroupWriter;
Expand Down

0 comments on commit ea41a5f

Please sign in to comment.