Releases: prestodb/RPresto
Releases · prestodb/RPresto
v1.3.4
v1.3.3
v1.3.2
v1.3.1
v1.3.0 as it appears on CRAN
- Fix Rcpp compilation under Windows (#79)
SET/RESET SESSIONqueries are now correctly respected when used underdbGetQuery.
PrestoConnectionno longer hasparametersslot butdbConnectremains backward
compatible. Manual change to parameter is still possible viaconn@session$setParameter()(#77)- Adapt to changes in dplyr version 0.7.0, mainly around the remote
backend support being split todbplyr. This should be backwards compatible
back to dplyr 0.4.3 (#76) - Add support for the REAL data type (#70)
- Allow specifying the connection source (#68)
- Drop RCurl dependency (#67)
- Return DECIMAL data types as characters as opposed to numeric's
previously (#64, fixes #60) - Add support for new integer data types (INTEGER, SMALLINT, TINYINT) (#59, fixes #56)
- Migrate the
jsontodata.frameconstruction from pure R to Rcpp for 10x
speed gains! (thanks @saurfang) (#57, #58) - Fix dbListFields to use the nextUri instead of infoUri (#55)
- Don't drop data for duplicate column names (#53)
v1.2.1
Release v1.2.0 as it appears on CRAN
- Add a
session.timezoneparameter todbConnectandsrc_prestowhich
defaults to UTC. This affects the timestamps returned for Presto data types
"TIMESTAMP". We handle the ambiguity by assigning a time zone to every
POSIXct column returned. Note that if you are doingas.character()directly
on these columns, the values you obtain will be different from what happened
before. - Fix the way we handle zero row multiple column query results. This will
affectLIMIT 0queries specifically.