You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Romain François (JIRA)" <ji...@apache.org> on 2019/06/24 06:54:00 UTC

[jira] [Updated] (ARROW-5702) [C++] parquet::arrow::FileReader::GetSchema()

     [ https://issues.apache.org/jira/browse/ARROW-5702?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Romain François updated ARROW-5702:
-----------------------------------
    Description: 
The class has 

{code:c++}
  /// \brief Return arrow schema by apply selection of column indices.
  /// \returns error status if passed wrong indices.
  ::arrow::Status GetSchema(const std::vector<int>& indices,
                            std::shared_ptr<::arrow::Schema>* out);
{code}

but not a GetSchema() that would return the schema for all the columns, the underlying implementation has it though. 

  was:
The class has 

{code: c++}
  /// \brief Return arrow schema by apply selection of column indices.
  /// \returns error status if passed wrong indices.
  ::arrow::Status GetSchema(const std::vector<int>& indices,
                            std::shared_ptr<::arrow::Schema>* out);
{code}

but not a GetSchema() that would return the schema for all the columns, the underlying implementation has it though. 


> [C++] parquet::arrow::FileReader::GetSchema()
> ---------------------------------------------
>
>                 Key: ARROW-5702
>                 URL: https://issues.apache.org/jira/browse/ARROW-5702
>             Project: Apache Arrow
>          Issue Type: Improvement
>          Components: C++
>            Reporter: Romain François
>            Priority: Minor
>
> The class has 
> {code:c++}
>   /// \brief Return arrow schema by apply selection of column indices.
>   /// \returns error status if passed wrong indices.
>   ::arrow::Status GetSchema(const std::vector<int>& indices,
>                             std::shared_ptr<::arrow::Schema>* out);
> {code}
> but not a GetSchema() that would return the schema for all the columns, the underlying implementation has it though. 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)