At first, I want to thank your hard work of developing dplyr package to the R community. This is one of the best package to do data manipulation in R and it does a lot of helps in my work.
Recently, I am trying the database API and filter a datetime column in PostgreSQL. I have the following error message:
> filter(hourly_rps_mode, time == time_value)
Error in UseMethod("escape") :
no applicable method for 'escape' applied to an object of class "c('POSIXct', 'POSIXt')"
It could be fixed easily by:
escape.POSIXt <- dplyr:::escape.Date
Could you add this to the package?