dgreiss commented on code in PR #36436:
URL: https://github.com/apache/arrow/pull/36436#discussion_r1264400744
##########
r/R/dataset-write.R:
##########
@@ -178,12 +178,32 @@ write_dataset <- function(dataset,
}
path_and_fs <- get_path_and_filesystem(path)
+
+ dots <- list(...)
+ if (format %in% c("csv", "tsv") && any(c("delimiter", "delim") %in%
names(dots))) {
+ stop("Do not set a delimiter for csv or tsv formats.")
+ }
Review Comment:
I think you're right, let's let users specify a csv format with any
delimiter.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]