We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/pydata/pandas-gbq/blob/master/pandas_gbq/load.py
needs to add the condition
job_config.allow_quoted_newlines = True
current work around is: df = df.replace({'\n': ' ', '\r\n': ' ', '\r': ' '}, regex=True)
The text was updated successfully, but these errors were encountered:
PR welcome!
Is there a time you wouldn't accept quoted newlines in config? i.e. does this need to be a parameter?
Sorry, something went wrong.
I think we could safely always turn this option on. I see the fact that we serialize to CSV as an implementation detail.
Closed by #230
No branches or pull requests
https://github.com/pydata/pandas-gbq/blob/master/pandas_gbq/load.py
needs to add the condition
job_config.allow_quoted_newlines = True
current work around is:
df = df.replace({'\n': ' ', '\r\n': ' ', '\r': ' '}, regex=True)
The text was updated successfully, but these errors were encountered: