You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Rares Vernica (JIRA)" <ji...@apache.org> on 2017/09/10 01:10:02 UTC

[jira] [Created] (ARROW-1512) [Docs] NumericArray has no member named 'raw_data'

Rares Vernica created ARROW-1512:
------------------------------------

             Summary: [Docs] NumericArray has no member named 'raw_data'
                 Key: ARROW-1512
                 URL: https://issues.apache.org/jira/browse/ARROW-1512
             Project: Apache Arrow
          Issue Type: Bug
          Components: C++, Documentation
    Affects Versions: 0.6.0
            Reporter: Rares Vernica
            Priority: Trivial


The example in the C++ docs uses a non-existing {{raw_data}} function https://arrow.apache.org/docs/cpp/index.html

{code:java}
// Get the pointer to the actual data
const int64_t* data = int64_array->raw_data();
{code}

Trying to compile it, you get:

{code:java}
error: 'class arrow::NumericArray<arrow::Int64Type>' has no member named 'raw_data'
     const int64_t* data = int64_array->raw_data();
{code}

The function used should be {{raw_values}}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)