darwin-eu / darwin-eu/CDMConnector
arrange() does not work before using collect()
Open
- Dominant language
- HTML
- Stars
- 17
- Forks
- 17
- PR merge metrics
- No merged PRs in 30d
Description
When trying to use dplyr arrange() function before collect(), it does not work.
Steps to reproduce:
```
cdm$condition_occurrence %>%
arrange(condition_concept_id) %>%
show_query()
```
ACTUAL RESULT:
```
SELECT *
FROM main.condition_occurrence
```
EXPECTED RESULT:
```
SELECT *
FROM main.condition_occurrence
ORDER BY condition_concept_id
```
Contributor guide
Assessment
This issue has not been assessed yet.