Skip to content

Commit

Permalink
version 0.6-2
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomoaki Nishiyama authored and cran-robot committed Jun 24, 2017
1 parent 263a7d4 commit 0e9b0cf
Show file tree
Hide file tree
Showing 182 changed files with 25,022 additions and 5,566 deletions.
97 changes: 97 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,100 @@
2017-06-19 Tomoaki NISHIYAMA <tomoakin@staff.kanazawa-u.ac.jp>
* new libpq from postgresql-9.6.3 and Makefiles generated on Sierra (macOS 10.12)

2014-02-08 Tomoaki NISHIYAMA <tomoakin@staff.kanazawa-u.ac.jp>

Update tests docs for CRAN submission.
A bug in postgresqlNewConnection() was identified and fixed during the
test rewrite.

* inst/ANNOUNCEMENT
* inst/NEWS
* man/dbConnect-methods.Rd: explanation of the parameters.
* R/PostgreSQLSupport.R: newConnection do not emit error on NULL
argument but convert to empty string which is a valid value.
* src/RS-PostgreSQL.c: RS_PostgreSQL_newConnection() don't checkk for
empty string.
* tests: Write more appropriate comments. Tell when the test is
skipped.

2014-02-06 Tomoaki NISHIYAMA <tomoakin@staff.kanazawa-u.ac.jp>

* config.sub, config.guess, install-sh move to src subdirectory
* man/postgresqlBuildTableDefinition.Rd: Shorten usage line
* man/postgresqlSupport.Rd: Shorten usage line

2014-02-04 Tomoaki NISHIYAMA <tomoakin@staff.kanazawa-u.ac.jp>

* ChangeLog
* inst/News
* src/libpq: update to libpq from postgresql-9.3.2
* configure.in: change the condition to use accompanied libpq
* configure
* tests/bytea.R: test both standard_conforming_strings states; add PASS response

2014-01-30 Tomoaki NISHIYAMA <tomoakin@staff.kanazawa-u.ac.jp>

Support hex conversion for unescaping.
Prevent segfault on unknown type to dbWriteTable.
Add minimal description of the escapebytea and unescapebytea.

* ChangeLog
* man/postgresqlSupport.Rd
* src/RS-PQescape.c
* src/RS-pgsql-copy.c
* R/PostgreSQLSupport.R: separate message body from heading
* tests/bytea.R: remove E prefix for postgresql version 9, though this
cause warning on 8.X.
* DESCRIPTION: forward the version to 0.5-1
* R/PostgreSQL.R: forward the version to 0.5-1

2014-01-29 Tomoaki NISHIYAMA <tomoakin@staff.kanazawa-u.ac.jp>

Initial support for Bytea data type.

* ChangeLog
* src/RS-PQescape.c
* R/PostgreSQLSupport.R
* NAMESPACE
* tests/bytea.R

2013-11-12 Tomoaki NISHIYAMA <tomoakin@staff.kanazawa-u.ac.jp>

Prepare for release

* inst/NEWS
* man/postgresqlBuildTableDefinition.Rd: line length
* man/postgresqlSupport.Rd: line length

2013-10-27 Tomoaki NISHIYAMA <tomoakin@staff.kanazawa-u.ac.jp>

Strange path support for OS X 10.9 Marvericks

* configure.in
* configure
* src/RS-PostgreSQL.c: keep declaration on the top of a block.

2013-08-22 Tomoaki NISHIYAMA <tomoakin@staff.kanazawa-u.ac.jp>

Memory leak detected by valgrind.

* src/RS-PostgreSQL.c
* src/RS-pgsql-copy.c
* src/RS-pgsql-getResult.c
* src/RS-pgsql-pqexec.c
* src/RS-pgsql-pqexecparams.c

2013-06-21 Tomoaki NISHIYAMA <tomoakin@staff.kanazawa-u.ac.jp>

* postgresqlWriteTable: send column names at COPY;
* dbWriteTableTest.R: test for append=T

2013-06-12 Tomoaki NISHIYAMA <tomoakin@staff.kanazawa-u.ac.jp>

Close the socket on failure of opening connection

* src/RS-PostgreSQL.c

2013-03-27 Tomoaki NISHIYAMA <tomoakin@staff.kanazawa-u.ac.jp>

Document synchronization and testoutputs.
Expand Down
43 changes: 18 additions & 25 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,34 +1,27 @@
Package: RPostgreSQL
Version: 0.4-1
Date: $Date: 2013-03-27 15:32:53 +0900 (Wed, 27 Mar 2013) $
Title: R interface to the PostgreSQL database system
Author: Joe Conway, Dirk Eddelbuettel, Tomoaki Nishiyama, Sameer Kumar
Prayaga (during 2008), Neil Tiffin
Version: 0.6-2
Date: 2017-06-24
Title: R Interface to the 'PostgreSQL' Database System
Author: Joe Conway, Dirk Eddelbuettel, Tomoaki Nishiyama, Sameer Kumar Prayaga (during 2008), Neil Tiffin
Maintainer: Tomoaki Nishiyama <tomoakin@staff.kanazawa-u.ac.jp>
Description: Database interface and PostgreSQL driver for R This
package provides a Database Interface (DBI) compliant driver
for R to access PostgreSQL database systems.
.
In order to build and install this package from source, PostgreSQL
itself must be present your system to provide PostgreSQL
functionality via its libraries and header files. These files
are provided as postgresql-devel package under some Linux
distributions.
.
On Microsoft Windows system the attached libpq library source will be
used.
.
A wiki and issue tracking system for the package are available at
Google Code at https://code.google.com/p/rpostgresql/ .
Description: Database interface and 'PostgreSQL' driver for 'R'.
This package provides a Database Interface 'DBI' compliant
driver for 'R' to access 'PostgreSQL' database systems.
In order to build and install this package from source, 'PostgreSQL'
itself must be present your system to provide 'PostgreSQL' functionality
via its libraries and header files. These files are provided as
'postgresql-devel' package under some Linux distributions.
On 'macOS' and 'Microsoft Windows' system the attached 'libpq' library source will be used.
LazyLoad: true
Depends: R (>= 2.9.0), methods, DBI (>= 0.1-4)
Depends: R (>= 2.9.0), methods, DBI (>= 0.3)
License: GPL-2 | file LICENSE
Copyright: Authors listed above, PostgreSQL Global Development Group,
and The Regents of the University of California
Collate: S4R.R zzz.R PostgreSQLSupport.R dbObjectId.R PostgreSQL.R
URL: https://code.google.com/p/rpostgresql/,
http://www.stat.bell-labs.com/RS-DBI, http://www.postgresql.org
Packaged: 2016-05-08 20:59:35 UTC; ligges
URL: https://github.com/tomoakin/RPostgreSQL,
https://cran.r-project.org/package=DBI,
http://www.postgresql.org
NeedsCompilation: yes
Packaged: 2017-06-24 03:16:20 UTC; tomoaki
Repository: CRAN
Date/Publication: 2016-05-08 23:09:20
Date/Publication: 2017-06-24 07:17:52 UTC

0 comments on commit 0e9b0cf

Please sign in to comment.