SHIMA Tatsuya created ARROW-17673:
-------------------------------------

             Summary: [R] desc in dplyr::arrange should allow dplyr:: prefix
                 Key: ARROW-17673
                 URL: https://issues.apache.org/jira/browse/ARROW-17673
             Project: Apache Arrow
          Issue Type: Improvement
          Components: R
    Affects Versions: 9.0.0
            Reporter: SHIMA Tatsuya
            Assignee: SHIMA Tatsuya


This example works.

{code:r}
mtcars |> arrow::arrow_table() |> dplyr::arrange(desc(cyl)) |> dplyr::collect()
{code}

But next one is not supported now.

{code:r}
mtcars |> arrow::arrow_table() |> dplyr::arrange(dplyr::desc(cyl)) |> 
dplyr::collect()
{code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to