You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Ariana Villegas (Jira)" <ji...@apache.org> on 2022/04/29 22:55:00 UTC

[jira] [Created] (ARROW-16424) [C++] Add support for all options specified by substrait::ReadRel::LocalFiles::FileOrFiles

Ariana Villegas created ARROW-16424:
---------------------------------------

             Summary: [C++] Add support for all options specified by substrait::ReadRel::LocalFiles::FileOrFiles
                 Key: ARROW-16424
                 URL: https://issues.apache.org/jira/browse/ARROW-16424
             Project: Apache Arrow
          Issue Type: Improvement
          Components: C++
            Reporter: Ariana Villegas


FromProto function in {{arrow/engine/substrait/relation_internal.cc}} parse {{uri_path}} with {{string_view}} utilities. However this should be done with {{Uri}} class from {{arrow/util/uri.h.}}
{code:c++}
else if (util::string_view{path}.ends_with(".arrow")) {
  format = std::make_shared<dataset::IpcFileFormat>();
} else if (util::string_view{path}.ends_with(".feather")) {
  format = std::make_shared<dataset::IpcFileFormat>();
{code}



--
This message was sent by Atlassian Jira
(v8.20.7#820007)