Skip to content
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

CSV import doesn't support escaped commas #29

Open
jasonamador opened this issue Jan 31, 2024 · 1 comment
Open

CSV import doesn't support escaped commas #29

jasonamador opened this issue Jan 31, 2024 · 1 comment
Assignees
Labels
bug Something isn't working

Comments

@jasonamador
Copy link

When trying to import a CSV file that has data with escaped commas, you get extra columns.

Example CSV

name,description
Test,"Hi, this doesn't work"

Expected

The table is built with two columns like this:

name | description
-----+--------------------
Test | Hi, this doesn't work

Actual

We get an extra column like this:

name | description |
-----+-------------|------------------
Test | Hi          | this doesn't work
@OvidijusParsiunas
Copy link
Owner

OvidijusParsiunas commented Feb 1, 2024

Hi, this has now been updated in version 1.1.4 where the commas are parsed correctly and quotes are also retained.
Let me know if this is sufficient. Thanks!

@OvidijusParsiunas OvidijusParsiunas self-assigned this Feb 1, 2024
@OvidijusParsiunas OvidijusParsiunas added the bug Something isn't working label Feb 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants