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

[jira] [Created] (ARROW-17673) [R] desc in dplyr::arrange should allow dplyr:: prefix

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)