You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Maarten Breddels (Jira)" <ji...@apache.org> on 2020/10/07 09:24:00 UTC

[jira] [Created] (ARROW-10208) [C++] comparing list arrays with nulls fails in test framework

Maarten Breddels created ARROW-10208:
----------------------------------------

             Summary: [C++] comparing list arrays with nulls fails in test framework
                 Key: ARROW-10208
                 URL: https://issues.apache.org/jira/browse/ARROW-10208
             Project: Apache Arrow
          Issue Type: Improvement
          Components: C++
            Reporter: Maarten Breddels


I am not sure if this is a specific test issue or valid behavior, but when writing a test in [https://github.com/apache/arrow/pull/8271] 

The following test fails:
{code:java}
this->CheckUnary("split_pattern", R"(["foo bar", "foo", null])", list(this->type()),  //                  R"([["foo", "bar"], ["foo"], null])", &options);
{code}
with the following output
{code:java}
Failed:
Got: 
  [
    [
      [
        "foo",
        "bar"
      ]
    ],
    [
      [
        "foo"
      ],
      null
    ]
  ]
Expected: 
  [
    [
      [
        "foo",
        "bar"
      ]
    ],
    [
      [
        "foo"
      ],
      null
    ]
  ]
{code}
while the outputs are the same, the arrays are seen as unequal.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)