Brian Schultheiss
Brian Schultheiss
Would be great to add support for Jupyter Lab 3.1.x https://github.com/lckr/jupyterlab-variableInspector/blob/master/package.json#L47-L54 https://jupyterlab.readthedocs.io/en/stable/getting_started/changelog.html#v3-1 Thanks!
- There seems to be a problem with `SSH_AUTH_METHOD_PASSWORD`...it fails to authenticate in this block of code: - https://github.com/ropensci/ssh/blob/master/src/session.c#L102-L120 - When I change this function: ```c /* authenticate client */...
If you are interested, I took a stab at this for https://github.com/s-u/RJDBC/issues/95
Currently, if you have a multi-schema database, you cannot access schema specifically using the - DBI::Id functionality. - https://dbi.r-dbi.org/reference/id - ```r table
When translating sql on a `Spark SQL` connection, the 'add_year' translation is double quoting the column name: ```r # SQL: add_years(dob, 1) ADD_MONTHS('`dob`', 1.0 * 12.0) ``` This fails on...