Maximilian Paulisch

Results 155 issues of Maximilian Paulisch

The following gives an jq error but the error is actually not thrown. Further, we get a length 1 vector instead of a length 2 as expected. ``` r jqr::jq(c('{"a":...

Fixes #974. It would be even nicer if we could detect a dark theme ourselves but cli does not export `detect_dark_theme()`. Where should this be documented so that users can...

Closes #865. This PR replaces #894. The code currently has some rough edges that still need to be improved. One has to be quite careful when a series of `left/inner_join()`...

Closes #909. It would also be possible to add explicit casts to `y` columns if `y` is a database table (using `mutate()` on `y`). What do you think?

Closes #963. Maybe we should support (also in `copy_to()`) for `types` to be a lazy table where the types can be inferred from.

Similar to `copy_to()` there should be an argument `types` in `copy_inline()`. This is useful when working with non-R column types, e.g. for `rows_insert()`. Also see #909.

Inserting in a `jsonb` column is not that easy ``` r library(dplyr, warn.conflicts = FALSE) library(dbplyr, warn.conflicts = FALSE) con [1] 0 data.frame(id = 1, json_field = "[1, 2, 3]")...

In databases one often needs to join multiple tables. In dbplyr this produces rather many nested queries which one would more often write as a single query. ## Example ```...

See https://github.com/tidyverse/dbplyr/issues/870#issuecomment-1129242662