Changeset: f1b1023ce10f for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=f1b1023ce10f
Modified Files:
        clients/R/MonetDB.R/NEWS
        clients/R/MonetDB.R/R/dbi.R
Branch: embedded
Log Message:

R Connector: fix for monetdb.read.csv


diffs (24 lines):

diff --git a/clients/R/MonetDB.R/NEWS b/clients/R/MonetDB.R/NEWS
--- a/clients/R/MonetDB.R/NEWS
+++ b/clients/R/MonetDB.R/NEWS
@@ -14,6 +14,7 @@ 1.0.0
 - Cleaned up quoting behavior in dbListTables(), dbRemoveTable() etc.
 - Initial support for running MonetDB in embedded mode (MonetDBLite)
 - Now re-establishing connection if interrupt (CMD-C or ESC) occurs
+- Fixed a bug in monetdb.read.csv for multiple CSV files without headers
 
 0.9.7
 - Fixed crash on Windows (Sorry, everyone)
diff --git a/clients/R/MonetDB.R/R/dbi.R b/clients/R/MonetDB.R/R/dbi.R
--- a/clients/R/MonetDB.R/R/dbi.R
+++ b/clients/R/MonetDB.R/R/dbi.R
@@ -780,8 +780,7 @@ monet.read.csv <- monetdb.read.csv <- fu
                                                col.names=NULL, 
lower.case.names=FALSE, ...){
   
   if (length(na.strings)>1) stop("na.strings must be of length 1")
-  headers <- lapply(files, utils::read.csv, sep=delim, na.strings=na.strings, 
quote=quote, nrows=nrow.check, 
-                    ...)
+  headers <- lapply(files, utils::read.csv, sep=delim, na.strings=na.strings, 
quote=quote, nrows=nrow.check, header=header, ...)
 
   if (!missing(nrows)) {
     warning("monetdb.read.csv(): nrows parameter is not neccessary any more 
and deprecated.")
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to