Antoine Fabri

Results 299 issues of Antoine Fabri

``` r library(glue) con SELECT `a` `A`, `b` `B` FROM TABLE1 # tedious workaround selected SELECT `a` `A`, `b` `B` FROM TABLE1 ``` Created on 2022-08-31 by the [reprex package](https://reprex.tidyverse.org)...

feature
SQL :oil_drum:

The `date_breaks` arg is documented as : date_breaks : > A string giving the distance between breaks like "2 weeks", or "10 years". If both breaks and date_breaks are specified, ...

This is due to its use of base::deparse() , which has a cutoff of max 100 characters, easy to attain with factors. ``` r dm:::deparse_line(factor(1:100)) #> [1] "structure(1:100, class =...

After discussion in #1453 we propose unwrapping without using nesting/packing cols nor nested/packed cols to store constraints metadata. When unnesting : * we know the PK of the parent but...

Since last CRAN version : ``` r x `old$a$uuid`: "0e070506-0802-0104-090f-030c0a0b0d00" #> `new$a$uuid`: "0209050f-060e-0a0c-070d-080003040b01" ``` Created on 2022-08-24 by the [reprex package](https://reprex.tidyverse.org) (v2.0.1) I assume we'd want dm() to be deterministic

* Draft for discussion, implementing ideas from #1046 . * Closes #867 (if we go this route) * On top of #1451 , better to merge after #1446 , #1450,...

After #1447 Closes #835 unless we also want pb for the deprecated dm_apply_filters()

``` r # no problem x a # problem : we get a warning, though the tibble prints fine x #> Warning in class(x) strings ("glue", "character", ...); result will...

``` r library(tidyr) data #> 1 1 1 #> 2 1 2 expand_grid(data, new = foo) #> # A tibble: 1 × 2 #> foo new #> #> 1 1...

feature
grids #️⃣

From `?is_expression` : > in rlang, an expression is the return type of parse_expr(), the set of objects that can be obtained from parsing R code ``` r expr [1]...