KxSystems / rkdb

R client for kdb+
https://code.kx.com/q/interfaces
Apache License 2.0
41 stars 29 forks source link

R Date type not handled #47

Closed grantirv closed 5 years ago

grantirv commented 5 years ago

Looks like R Date type is not recognised?

h <- open_connection('localhost', 5000)
execute(h,'{`tmp set x}',data.frame(a=c(1,2,3),b=c("a","b","b"))) # works as expected
execute(h,'{`tmp set x}',data.frame(a=c(1,2,3),b=Sys.Date()+0:2)) # fails
cmccarthy1 commented 5 years ago

Hi @grantirv,

Apologies it's take time to get around to this. I'm currently looking into this issue now and hope to have a fix in place in the next week or two. I'll update here once the issue has been fixed.

All the best,

Conor