You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@parquet.apache.org by "Zherui Cao (JIRA)" <ji...@apache.org> on 2019/08/05 20:07:00 UTC

[jira] [Created] (PARQUET-1631) [C++] ParquetInputWrapper::GetSize always returns 0

Zherui Cao created PARQUET-1631:
-----------------------------------

             Summary: [C++] ParquetInputWrapper::GetSize always returns 0
                 Key: PARQUET-1631
                 URL: https://issues.apache.org/jira/browse/PARQUET-1631
             Project: Parquet
          Issue Type: Bug
          Components: parquet-cpp
            Reporter: Zherui Cao


::arrow::Status ParquetInputWrapper::GetSize(int64_t* size)

{ PARQUET_CATCH_NOT_OK(*size = source_->Tell()); return ::arrow::Status::OK(); }

This must be 
 ::arrow::Status ParquetInputWrapper::GetSize(int64_t* size) {
 PARQUET_CATCH_NOT_OK(*size = source_->Size());
 return ::arrow::Status::OK();
 }
  



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)