CREATE TABLE tmp
(
"row.names" text,
idate date,
itime time without time zone,
px timestamp with time zone
)
Ideally would be to have ITime-time conversion on R-DB, and consistent behaviour to POSIXct to produce time with time zone. Where in the code I should look for such change?
For the time with time zone it should be enough to update switch and define type the same way as posixct. But how can I add support for reading those types from db?
Below the part of
postgresqlDataType
. I've added two typesIDate
andITime
.I can save new data type from R but I cannot read it.
While table in db created by
dbWriteTable
Ideally would be to have
ITime
-time
conversion on R-DB, and consistent behaviour toPOSIXct
to producetime with time zone
. Where in the code I should look for such change?