Jarod G.R. Meng
Jarod G.R. Meng
If I select "Public Data" in Meta and browse some table's meta information and then come back to the Viz tab, the query stops working because of a permission denied...
This is a stop gap solution to issue #137 until a more comprehensive solution is implemented. The small change basically restricts the bad name matching to whole-word only rather than...
When I tried to use remote_ls, it incurred a segfault error. ``` > library(git2r); sessionInfo(); remote_ls("https://github.com/ropensci/git2r") R version 3.2.2 (2015-08-14) Platform: x86_64-pc-linux-gnu (64-bit) Running under: Ubuntu 14.04.5 LTS locale: [1]...
Is it possible to enforce a rule to limit code to 80 character per line? `styler` currently doesn't seem to do that. The closest issue I can find is #118,...
When `googleAuthR.rawResponse` option is set to `FALSE` (which is the default), function built by `gar_api_generator()` return a `response`-class object. However, those response objects don't seem to play well with `response`...
It seems that when I used interactive charting packages like rbokeh and ggvis, the chart doesn't get rendered in the preview pane. Is this a known issue?
The default translation (from `dbplyr`) of `paste` is `CONCAT_WS` which is not available in Presto. ``` r library(RPresto) library(dbplyr) con CONCAT_WS('', `a`, `b`) translate_sql(paste(a, b), con = con) #> CONCAT_WS('...
Currently we have an implementation of the standard `DBI::sqlAppendTable()` and `DBI::dbAppendTable()` which takes the appended (inserted) rows from a data frame. Presto allows `INSERT INTO` a table using a query...
Currently when a `BIGINT` column is coerced into `integer` in R, RPresto churns out a generic warning message ``` r library(RPresto) library(DBI) conn Warning in as.integer.integer64(x): NAs produced by integer...
The package is at a size that warrants a site to cover all documentations (e.g. function references, README, vignettes, and NEWs). We can use `pkgdown` to build one, but need...