You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the timezone_out and tz_out_convert options are supposed to convert date time columns with target timezones. But it is not converting any POSIXct columns.
I think the problem is the following code is supposed to find datetime columns but it's only checking "POSIXt", not "POSIXct".
Currently, the
timezone_out
andtz_out_convert
options are supposed to convert date time columns with target timezones. But it is not converting any POSIXct columns.I think the problem is the following code is supposed to find datetime columns but it's only checking "POSIXt", not "POSIXct".
duckdb-r/R/Result.R
Line 101 in f1deae2
If
"POSIXt"
is changed toc("POSIXt", "POSIXct")
, it should capture both.The text was updated successfully, but these errors were encountered: