Hadley Wickham
Hadley Wickham
@juniperlsimonis what are the problems with odbc and DB2? Could you file an issue in https://github.com/r-dbi/odbc?
To get rJava working on my arm64 mac: ``` brew install openjdk # follow sudo ln advice sudo R CMD javareconf ```
I don't think there's much dbplyr can do with RJDBC since it doesn't appear to expose a way to figure out the underlying database type from the driver/connection: ``` r...
@shearerpmm I think we could in principle do that, but the idea that the connection defines the database type is deeply intwined in the guts of dbplyr, so fixing that...
Minimal reprex: ``` r library(testthat) a names for target but not for current ``` Created on 2024-04-17 with [reprex v2.1.0](https://reprex.tidyverse.org) Hmmm, this is because waldo doesn't consider names to an...
Looks like this has been fixed in waldo: ``` r library(testthat) expect_equal(1, c(a = 1), ignore_attr = TRUE) #> Error: 1 not equal to c(a = 1). #> names for...
One reason to not suppress messages is that you need _some way_ to get output out of a test and directly to the user's eyes for when you're debugging a...
The principle that testthat follows today is consistent — all conditions (messages, warnings, and errors) bubble up, unless otherwise caught. Similarly, all output, whether to `stdout()` or `stderr()`, is also...
If you `rm(payload)`, then the garbage collector should close down the process a bit later.
@rcepka can you provide any more details?