-
Notifications
You must be signed in to change notification settings - Fork 86
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
cell inlineStr parsing problem at the beginning of the file #131
Comments
if add
what will it break? |
and maybe value_type should be nullified for new cell |
Oh, I see that it's already fixed in master. But there are still bugs in 1.6.4 |
In master branch there is another problem: since stream_worksheet.ex has its own def sax_event_handler({:endElement, _, 'row', _}, state, _excel), it does not fill_nil like parse_worksheet.ex. So for {A1: 1, C1: 2} instead of [1, nil, 2] I get [1,2]. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I found a problem with inlineStr parsing, when we get a spreadsheet with
the whole row will be [nil, nil, ...]
but if we change only the first cell to
the whole row will parse ["Value1", "Value2"...]
how to fix this behavior?
The text was updated successfully, but these errors were encountered: