You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "mapleFU (via GitHub)" <gi...@apache.org> on 2023/04/07 11:48:11 UTC

[GitHub] [arrow] mapleFU opened a new issue, #34960: [C++] TestUtil: RandomArrayGenerator will lost the "nullable" info when build nested list

mapleFU opened a new issue, #34960:
URL: https://github.com/apache/arrow/issues/34960

   ### Describe the bug, including details regarding any error messages, version, and platform.
   
   ```C++
     {
       auto item = std::make_shared<arrow::Field>("item", arrow::int8(), true);
       auto nestListField =
           std::make_shared<arrow::Field>("list", arrow::list(item), false);
       auto listField =
           std::make_shared<arrow::Field>("list", arrow::list(nestListField), true);
       auto array = rng.ArrayOf(*listField, 428);
       ARROW_EXPECT_OK(array->ValidateFull());
   
       auto batch = rng.BatchOf({listField}, 428);
       ARROW_EXPECT_OK(batch->ValidateFull());
     }
   ```
   
   The code above will validate failed, because it lost the nullable info in nested list
   
   ### 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-unsubscribe@arrow.apache.org.apache.org

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


[GitHub] [arrow] lidavidm closed issue #34960: [C++] TestUtil: RandomArrayGenerator will lost the "nullable" info when build nested list

Posted by "lidavidm (via GitHub)" <gi...@apache.org>.
lidavidm closed issue #34960: [C++] TestUtil: RandomArrayGenerator will lost the "nullable" info when build nested list
URL: https://github.com/apache/arrow/issues/34960


-- 
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-unsubscribe@arrow.apache.org

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