[med-svn] [r-cran-rsqlite] branch master updated (9454bbf -> 77476ff)
Andreas Tille
tille at debian.org
Fri Aug 25 21:22:32 UTC 2017
This is an automated email from the git hooks/post-receive script.
tille pushed a change to branch master
in repository r-cran-rsqlite.
from 9454bbf Upload to unstable
adds e93ad5a New upstream version 2.0
new a98837a Updated version 2.0 from 'upstream/2.0'
new 334858f New upstream version
new 85fe6b2 Standards-Version: 4.1.0 (no changes needed)
new efab76b Adapt patches
new 77476ff Add packages to do
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
DESCRIPTION | 15 +-
MD5 | 149 +-
NAMESPACE | 11 +-
NEWS.md | 52 +
R/RcppExports.R | 36 +-
R/SQLiteConnection.R | 35 +-
R/SQLiteDriver.R | 30 +-
R/SQLiteResult.R | 14 +-
R/connect.R | 31 +-
R/copy.R | 2 +-
R/deprecated.R | 4 +-
R/dummy.R | 16 -
R/export.R | 105 +
R/query.R | 208 +-
R/rownames.R | 4 +-
R/table.R | 212 +-
R/transactions.R | 30 +-
README.md | 89 +-
build/vignette.rds | Bin 195 -> 193 bytes
debian/changelog | 8 +
debian/control | 2 +-
debian/patches/use_debian_packages_boost.patch | 6 +-
inst/doc/RSQLite.html | 38 +-
man/SQLite.Rd | 9 +-
man/SQLiteConnection-class.Rd | 46 +-
man/SQLiteDriver-class.Rd | 12 +-
man/SQLiteResult-class.Rd | 41 +-
man/dbDataType-SQLiteDriver-method.Rd | 35 -
...xistsTable-SQLiteConnection-character-method.Rd | 36 -
...ListFields-SQLiteConnection-character-method.Rd | 28 -
...bReadTable-SQLiteConnection-character-method.Rd | 21 +-
...emoveTable-SQLiteConnection-character-method.Rd | 31 -
man/dbWriteTable.Rd | 18 +-
man/dummy-methods.Rd | 23 -
man/reexports.Rd | 18 -
man/sqlite-meta.Rd | 65 -
man/sqlite-query.Rd | 118 -
man/sqlite-transaction.Rd | 21 +-
man/sqliteBuildTableDefinition.Rd | 2 +-
man/sqliteCopyDatabase.Rd | 2 +-
src/ColumnDataType.h | 14 +
src/ColumnStorage.cpp | 249 +
src/ColumnStorage.h | 53 +
src/Makevars | 14 +-
src/RSQLite.h | 16 +-
src/RSQLite_types.h | 8 +-
src/RcppExports.cpp | 35 +-
src/SqliteColumn.cpp | 117 +
src/SqliteColumn.h | 39 +
src/SqliteColumnDataSource.cpp | 118 +
src/SqliteColumnDataSource.h | 38 +
src/SqliteConnection.cpp | 26 +-
src/SqliteConnection.h | 12 +-
src/SqliteDataFrame.cpp | 237 +-
src/SqliteDataFrame.h | 38 +-
src/SqliteResult.cpp | 6 +-
src/SqliteResult.h | 2 +-
src/SqliteResultImpl.cpp | 123 +-
src/SqliteResultImpl.h | 16 +-
src/SqliteUtils.h | 34 -
src/connection.cpp | 13 +-
src/import-file.c | 2 +-
src/integer64.h | 10 +
src/pch.h | 1 +
src/result.cpp | 6 +-
src/rsqlite.cpp | 2 +-
src/sqlite3.h | 13 +-
src/utils.cpp | 7 +
src/utils.h | 6 +
src/{ => vendor}/sqlite3/extension-functions.c | 84 +-
src/{ => vendor}/sqlite3/sqlite3.c | 37816 +++++++++++++------
src/{ => vendor}/sqlite3/sqlite3.h | 2473 +-
src/{ => vendor}/sqlite3/sqlite3.h.orig | 240 +-
src/{ => vendor}/sqlite3/sqlite3ext.h | 32 +-
tests/testthat/helper-DBItest.R | 9 +-
tests/testthat/test-DBItest.R | 49 +-
tests/testthat/test-affinity.R | 128 +-
tests/testthat/test-basic-types.R | 64 +-
tests/testthat/test-blob.R | 23 +-
tests/testthat/test-column-info.R | 26 +
tests/testthat/test-dbClearResult.R | 4 +-
tests/testthat/test-dbConnect.R | 14 +-
tests/testthat/test-dbSendQuery.R | 35 +-
tests/testthat/test-dbWriteTable.R | 54 +-
tests/testthat/test-dbWriteTableAutoincrement.R | 2 +
tests/testthat/test-field-types.R | 12 +-
tests/testthat/test-json.R | 2 +
tests/testthat/test-readonly.R | 12 +
tests/testthat/test-sd.R | 25 +
tests/testthat/test-sqliteCopyDatabase.R | 21 +-
tests/testthat/test-sqliteQuickColumn.R | 6 +-
91 files changed, 30550 insertions(+), 13459 deletions(-)
delete mode 100644 R/dummy.R
create mode 100644 R/export.R
delete mode 100644 man/dbDataType-SQLiteDriver-method.Rd
delete mode 100644 man/dbExistsTable-SQLiteConnection-character-method.Rd
delete mode 100644 man/dbListFields-SQLiteConnection-character-method.Rd
delete mode 100644 man/dbRemoveTable-SQLiteConnection-character-method.Rd
delete mode 100644 man/dummy-methods.Rd
delete mode 100644 man/reexports.Rd
delete mode 100644 man/sqlite-meta.Rd
delete mode 100644 man/sqlite-query.Rd
create mode 100644 src/ColumnDataType.h
create mode 100644 src/ColumnStorage.cpp
create mode 100644 src/ColumnStorage.h
create mode 100644 src/SqliteColumn.cpp
create mode 100644 src/SqliteColumn.h
create mode 100644 src/SqliteColumnDataSource.cpp
create mode 100644 src/SqliteColumnDataSource.h
delete mode 100644 src/SqliteUtils.h
create mode 100644 src/integer64.h
create mode 100644 src/pch.h
create mode 100644 src/utils.cpp
create mode 100644 src/utils.h
rename src/{ => vendor}/sqlite3/extension-functions.c (98%)
rename src/{ => vendor}/sqlite3/sqlite3.c (86%)
rename src/{ => vendor}/sqlite3/sqlite3.h (79%)
rename src/{ => vendor}/sqlite3/sqlite3.h.orig (98%)
rename src/{ => vendor}/sqlite3/sqlite3ext.h (96%)
create mode 100644 tests/testthat/test-column-info.R
create mode 100644 tests/testthat/test-readonly.R
create mode 100644 tests/testthat/test-sd.R
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/r-cran-rsqlite.git
More information about the debian-med-commit
mailing list