pbiecek / archivist

A set of tools for datasets and plots archiving
http://pbiecek.github.io/archivist/
74 stars 9 forks source link

Update to RSQlite causes warnings #316

Closed eliotmcintire closed 6 years ago

eliotmcintire commented 7 years ago

In saveToLocalRepo, createLocalRepo and likely others: many new warnings appearing, which appear to have come with RSQLite 2.0 which is now on CRAN.

a <- 1
repo <- tempdir()
archivist::createLocalRepo(repo)
archivist::saveToLocalRepo(a, repoDir = repo)

Warning messages:
1: In rsqlite_fetch(res@ptr, n = n) :
  Don't need to call dbFetch() for statements, only for queries
pbiecek commented 7 years ago

thanks, will check this along with #313

pbiecek commented 7 years ago

fixed with 3a0dff49f2cc78189c9077de9a90f5839ea66bd7

MarcinKosinski commented 7 years ago

Thanks for the report and fast fix : )