You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a postgres csv file which contains a number of quoted empty cells like the following:
"cell1","","cell3",NULL,"cell5"
In this case, despite five fields are present in the row, only four will be seen:
"cell1"
"","cell3"
NULL
"cell5"
I've made a patch for this copied in below. In the patched line I amend the check for an escape sequence to also validate that last_quote_location wasn't the first character of the cell and the following character isn't a delimiter. I.e. that we don't have a cell like the second cell above.
I have a postgres csv file which contains a number of quoted empty cells like the following:
"cell1","","cell3",NULL,"cell5"
In this case, despite five fields are present in the row, only four will be seen:
I've made a patch for this copied in below. In the patched line I amend the check for an escape sequence to also validate that last_quote_location wasn't the first character of the cell and the following character isn't a delimiter. I.e. that we don't have a cell like the second cell above.
csv2.patch
The text was updated successfully, but these errors were encountered: