-
Notifications
You must be signed in to change notification settings - Fork 40
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
db_append_table should not double escape already escaped quotes #270
Comments
To add on this a little: |
Thanks, happy to review a PR, I don't have a strong opinion regarding the method to create the TSVs as long as it's robust. |
Sure I can look into that. |
I tested the changes against all our MySQL database schemas for identity and it seems to work just fine. I do not really know how DBItest works and on a first glance it seems the issue is with MariaDB which I do not have access to. |
Hey there,
long awaited and now available, I was very happy about the possibility to insert data into MySQL databases via local file. However, I may have found a small issue when creating the TSV file.
{readr} seems to escape already escaped quotes, which leads to unwanted results. My suggestion would be to use
readr::write_delim(..., escape = "none")
, unless the default escaping of readr was chosen on purpose.Please let me know if you need more information on this!
Cheers,
Janis
The text was updated successfully, but these errors were encountered: