Skip to content

Commit 929f948

Browse files
committed
Fix compressed type
1 parent 86e9176 commit 929f948

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ParquetMsg.chpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ module ParquetMsg {
479479
var pqErr = new parquetErrorMsg();
480480
if c_writeColumnToParquet(parFilename.localize().c_str(), c_ptrTo(coreArr), 0,
481481
dsetname.localize().c_str(), coreArr.size, rowGroupSize,
482-
dtypeRep, compressed, c_ptrTo(pqErr.errMsg)) == ARROWERROR {
482+
dtypeRep, compression, c_ptrTo(pqErr.errMsg)) == ARROWERROR {
483483
pqErr.parquetError(getLineNumber(), getRoutineName(), getModuleName());
484484
}
485485
}

0 commit comments

Comments
 (0)