Skip to content

Commit

Permalink
use more abstract POSIXt to handle both POSIXct and POSIXlt
Browse files Browse the repository at this point in the history
  • Loading branch information
vh-d committed May 31, 2019
1 parent 3f73710 commit 8e08ea4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: RETL
Type: Package
Title: Various tools for ETL
Version: 0.1.10.9002
Version: 0.1.10.9003
Author: Vaclav Hausenblas
Maintainer: Vaclav Hausenblas <vaclav.hausenblas@gmail.com>
Description: Provides function for ETL pipelines such as extraction, loading, tranformation, conversion...
Expand Down
4 changes: 3 additions & 1 deletion R/RODBC_datatype_conv.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"ACCESS" =
c(
factor = "VARCHAR(255)",
POSIXct = "DATETIME",
POSIXt = "DATETIME",
Date = "DATE",
difftime = "TIME",
blob = "BINARY",
Expand All @@ -15,3 +15,5 @@
list = "VARCHAR(255)"
)
)

# TODO: use S3 methods a la odbc package

0 comments on commit 8e08ea4

Please sign in to comment.