You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Neal Richardson (Jira)" <ji...@apache.org> on 2021/02/20 00:28:00 UTC

[jira] [Created] (ARROW-11705) [R] Support scalar value recycling in RecordBatch/Table$create()

Neal Richardson created ARROW-11705:
---------------------------------------

             Summary: [R] Support scalar value recycling in RecordBatch/Table$create()
                 Key: ARROW-11705
                 URL: https://issues.apache.org/jira/browse/ARROW-11705
             Project: Apache Arrow
          Issue Type: New Feature
          Components: R
            Reporter: Neal Richardson
             Fix For: 4.0.0


Compare:

{code}
> tibble::tibble(a=1:5, b = 42)
# A tibble: 5 x 2
      a     b
  <int> <dbl>
1     1    42
2     2    42
3     3    42
4     4    42
5     5    42
> arrow::record_batch(a=1:5, b = 42)
Error: Invalid: All arrays must have the same length
{code}



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