-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Swap readr for data.table as creator of TSV #271
base: main
Are you sure you want to change the base?
Conversation
Thanks. I tweaked myself to ensure that CI/CD is run. Should we perhaps consider offering both ways of creating the CSV files, and perhaps make the data.table way opt-in for now? |
Something's not quite right yet with the tests, could you please take a look? |
Ok I'll see if I understand whats going on. |
Current Aviator status
This pull request is currently open (not queued). How to mergeTo merge this PR, comment
See the real-time status of this PR on the
Aviator webapp.
Use the Aviator Chrome Extension
to see the status of your PR within GitHub.
|
@@ -61,23 +61,23 @@ db_append_table <- function(conn, name, value, warn_factor = TRUE, safe = TRUE, | |||
sql <- paste0( | |||
"LOAD DATA LOCAL INFILE ", dbQuoteString(conn, path), "\n", | |||
"IGNORE\n", | |||
"FIELDS TERMINATED BY ", dbQuoteString(conn, "\t"), "\n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps:
"FIELDS TERMINATED BY ", dbQuoteString(conn, "\t"), "\n", | |
"FIELDS TERMINATED BY ", dbQuoteString(conn, "\\t"), "\n", |
?
This closes #270.