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
Hi All,
I am trying to generate a CSV file but apparently it is does not escape properly que quote character. Here is an example:
vdf = vp.vDataFrame(sql='''SELECT '0' AS ID, 'Comma ", test"' AS DESCR''') vdf.to_csv('comma_test.csv')
It produces:
ID","DESCR" "0","Comma ", test""
While it should be :
ID,DESCR 0,"Comma "", test"""
I am using:
vertica-python==1.1.1 verticapy==0.12.0
The text was updated successfully, but these errors were encountered:
Thank you, the bug will be corrected in the next release.
Sorry, something went wrong.
oualib
Successfully merging a pull request may close this issue.
Hi All,
I am trying to generate a CSV file but apparently it is does not escape properly que quote character. Here is an example:
It produces:
While it should be :
I am using:
The text was updated successfully, but these errors were encountered: