[med-svn] [r-cran-rsqlite] 02/11: Merge tag 'upstream/1.1'
Andreas Tille
tille at debian.org
Wed Nov 30 14:05:12 UTC 2016
This is an automated email from the git hooks/post-receive script.
tille pushed a commit to branch master
in repository r-cran-rsqlite.
commit 22fbd6af7741732ca9c2ebd42eda5d5c267c54ad
Merge: a4e7052 88d3688
Author: Andreas Tille <tille at debian.org>
Date: Wed Nov 30 11:58:00 2016 +0100
Merge tag 'upstream/1.1'
Upstream version 1.1
DESCRIPTION | 61 +-
MD5 | 177 +-
NAMESPACE | 30 +-
NEWS.md | 698 +
R/Connect.R | 130 -
R/Connection.R | 128 -
R/ConnectionExtensions.R | 29 -
R/ConnectionRead.R | 85 -
R/ConnectionTransactions.R | 77 -
R/ConnectionWrite.R | 128 -
R/Constants.R | 1 -
R/Driver.R | 83 -
R/Escaping.R | 61 -
R/Object.R | 106 -
R/RcppExports.R | 78 +
R/Result.R | 231 -
R/SQLiteConnection.R | 46 +
R/SQLiteDriver.R | 27 +
R/SQLiteResult.R | 21 +
R/Summary.R | 78 -
R/Utils.R | 147 -
R/connect.R | 183 +
R/copy.R | 39 +
R/datasetsDb.R | 18 +-
R/dbGetInfo.R | 54 -
R/deprecated.R | 233 +
R/dummy.R | 16 +
R/extensions.R | 29 +-
R/query.R | 235 +
R/rownames.R | 8 +
R/table.R | 491 +
R/transactions.R | 95 +
R/utils.R | 18 +
README.md | 125 +-
build/vignette.rds | Bin 0 -> 195 bytes
configure | 4611 -
configure.in | 135 -
inst/doc/RSQLite.R | 60 +
inst/doc/RSQLite.Rmd | 127 +
inst/doc/RSQLite.html | 193 +
man/SQLite.Rd | 110 +
man/SQLiteConnection-class.Rd | 22 +-
man/SQLiteDriver-class.Rd | 62 +-
man/SQLiteResult-class.Rd | 10 +-
man/datasetsDb.Rd | 8 +-
man/dbBeginTransaction.Rd | 7 +-
man/dbConnect-SQLiteDriver-method.Rd | 76 -
man/dbDataType-SQLiteConnection-method.Rd | 34 -
man/dbDataType-SQLiteDriver-method.Rd | 36 +
...xistsTable-SQLiteConnection-character-method.Rd | 28 +-
man/dbGetException-SQLiteConnection-method.Rd | 16 -
man/dbGetInfo.Rd | 32 +-
man/dbIsValid.Rd | 38 -
...ListFields-SQLiteConnection-character-method.Rd | 22 +-
man/dbListResults-SQLiteConnection-method.Rd | 14 +
man/dbListTables-SQLiteConnection-method.Rd | 15 -
...bReadTable-SQLiteConnection-character-method.Rd | 62 +-
...emoveTable-SQLiteConnection-character-method.Rd | 21 +-
man/dbSendPreparedQuery.Rd | 23 -
man/dbUnloadDriver-SQLiteDriver-method.Rd | 26 -
man/dbWriteTable.Rd | 58 +-
man/dummy-methods.Rd | 24 +
man/fetch-SQLiteResult-method.Rd | 15 +
man/initExtension.Rd | 22 +-
man/isIdCurrent.Rd | 13 +
...e.db.names-SQLiteConnection-character-method.Rd | 47 +-
man/query-dep.Rd | 39 +
man/query.Rd | 83 -
man/reexports.Rd | 18 +
man/rsqliteVersion.Rd | 19 +
man/sqlite-meta.Rd | 53 +-
man/sqlite-query.Rd | 119 +
man/sqlite-transaction.Rd | 68 +
man/sqliteBuildTableDefinition.Rd | 9 +-
man/sqliteCopyDatabase.Rd | 59 +-
man/sqliteQuickColumn.Rd | 31 +-
man/summary.Rd | 36 -
man/transactions.Rd | 61 -
src/Makevars | 21 +
src/Makevars.in | 11 -
src/Makevars.win | 18 -
src/RSQLite.h | 14 +
src/RSQLite_types.h | 9 +
src/RcppExports.cpp | 202 +
src/SqliteConnection.cpp | 43 +
src/SqliteConnection.h | 42 +
src/SqliteDataFrame.cpp | 230 +
src/SqliteDataFrame.h | 46 +
src/SqliteResult.cpp | 67 +
src/SqliteResult.h | 33 +
src/SqliteResultImpl.cpp | 357 +
src/SqliteResultImpl.h | 76 +
src/SqliteUtils.h | 34 +
src/affinity.c | 103 +
src/affinity.h | 20 +
src/connection.c | 149 -
src/connection.cpp | 59 +
src/driver.c | 105 -
src/exceptions.c | 79 -
src/fetch.c | 392 -
src/fields.c | 92 -
src/{importFile.c => import-file.c} | 62 +-
src/param_binding.c | 165 -
src/quick_column.c | 130 -
src/result.c | 180 -
src/result.cpp | 55 +
src/rsqlite.cpp | 23 +
src/rsqlite.h | 163 -
src/sqlite-all.c | 3 -
src/sqlite-all.o-68d98681 | 0
src/sqlite.h | 5 -
src/sqlite/sqlite3.h | 7494 --
src/sqlite/sqlite3ext.h | 487 -
src/sqlite3.h | 21 +
src/{ => sqlite3}/extension-functions.c | 2 +-
src/{sqlite => sqlite3}/sqlite3.c | 114468 ++++++++++++------
{inst/include => src/sqlite3}/sqlite3.h | 2571 +-
{inst/include => src/sqlite3}/sqlite3ext.h | 65 +-
src/test-dbDisconnect.R | 18 -
src/utils.c | 110 -
src/workarounds/XPtr.h | 43 +
tests/testthat/helper-DBItest.R | 9 +
tests/testthat/helper-astyle.R | 33 +
tests/testthat/helper-memdb.R | 3 +
tests/testthat/helper-tibble.R | 9 +
tests/testthat/test-DBItest.R | 61 +
tests/testthat/test-affinity.R | 61 +
tests/testthat/test-astyle.R | 5 +
tests/testthat/test-basic-types.R | 25 +-
tests/testthat/test-data-type.R | 23 +-
tests/testthat/test-dbClearResult.R | 14 +-
tests/testthat/test-dbConnect.R | 39 +-
tests/testthat/test-dbSendQuery.R | 106 +-
tests/testthat/test-dbWriteTable.R | 273 +-
tests/testthat/test-dbWriteTableAutoincrement.R | 119 +
tests/testthat/test-error.R | 30 +
tests/testthat/test-exception.R | 73 +
tests/testthat/test-field-types.R | 48 +
tests/testthat/test-json.R | 10 +
tests/testthat/test-sqliteCopyDatabase.R | 38 +-
tests/testthat/test-sqliteQuickColumn.R | 8 +-
tests/testthat/test-transactions.R | 246 +
vignettes/RSQLite.Rmd | 127 +
143 files changed, 85140 insertions(+), 55015 deletions(-)
--
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