I have below issues when upgrade dplyr version from 0.7.2 to 0.7.4
For dplyr 0.7.2, below lines works
con1 <- src_postgres(host = "xx.xx.188.xxx", user = "myname", password = "mypassword", dbname="mydb")
ServicePoint <- as.data.frame(tbl(con1,"service_point"))
but above lines would not work for dplyr 0.7.4, and I need to change to
con2 <- dbConnect(PostgreSQL(),host = "xx.xx.188.xxx", user = "myname", password = "mypassword", dbname="mydb")
ServicePoint <- dbGetQuery(con2,"select * from service_point")
How could the upgrade from version 0.7.2 to 0.7.4 be seamless such that the code would not be impact?