kv-gits opened a new issue, #44002:
URL: https://github.com/apache/arrow/issues/44002

   ### Describe the usage question you have. Please include as many useful 
details as  possible.
   
   
   Try load parquet file in able with this code
   ```
   arrow::MemoryPool* pool = arrow::default_memory_pool();
   std::shared_ptr<arrow::io::RandomAccessFile> input;
   ARROW_ASSIGN_OR_RAISE(input, arrow::io::ReadableFile::Open(fullpath));
   // Open Parquet file reader
   std::unique_ptr<parquet::arrow::FileReader> arrow_reader;
   ARROW_RETURN_NOT_OK(parquet::arrow::OpenFile(input, pool, &arrow_reader));
   // Read entire file as a single Arrow table
   std::shared_ptr<arrow::Table> table;
   auto res = arrow_reader->ReadTable(&table);
   // ARROW_RETURN_NOT_OK(arrow_reader->ReadTable(&table));
   ```
   ReadTable returns status Not Implemented. Arrow lib built as static with 
this options
   ```
   cmake .. -DARROW_PARQUET=ON -DARROW_BUILD_STATIC="ON" 
-DARROW_BUILD_SHARED="OFF"  -DARROW_DEPENDENCY_SOURCE=BUNDLED 
-DARROW_DEPENDENCY_USE_SHARED=OFF -DARROW_FILESYSTEM=ON 
-DPARQUET_BUILD_EXAMPLES=ON
   ```
   Default examples work fine.
   
   ### Component(s)
   
   C++


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to