duckdb-r
duckdb-r copied to clipboard
The duckdb R package
It's more idiomatic to map to logical. ``` r duckdb -- Result Columns -- #> --------------------- #> - a (DOUBLE) #> - b (INTEGER) dput(duckdb$rel_to_altrep(rel2)) #> structure(list(a = 1, b...
Related to duckdblabs/duckplyr#92 Changes: 1. `rapi_rel_order` now accepts a vector of boolean values that describe whether each expression should be sorted in ascending order 2. `rel_order` checks that the number...
adress remaining comments from pull request #122 - check for missing dots - add an integration test that uses the window function
* In addition, I adjusted the default value of the digits argument in `round()` to `round(x, digits = 0)` to be consistent with the R default value. Fixes #146
```R duckdb:::sql('from iris') ``` now "just" works CC @krlmlr
Simpler (I believe) Alternative to #161 so that we can get a `LOGICAL NULL` constant with `expr_constant(NA)` and a `SQL NULL` from `expr_constant(NULL)`
This is related to https://github.com/hannes/duckdb-rfuns/pull/91#discussion_r1593002667 This allows `expr_constant()` to construct a NULL constant of type LOGICAL which wasn't possible before. Perhaps a better alternative would be to allow `expr_constant(NULL)` to...
related to https://github.com/hannes/duckdb-rfuns/pull/91#discussion_r1592100105