-
Notifications
You must be signed in to change notification settings - Fork 286
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
v1.3.1 - fails to parse empty gzipped files #963
Comments
I am running into a similar issue. I wonder if the underlying issue comes from trying to read from an empty connection. Here is a simplified example:
|
pralitp
added a commit
to pralitp/readr
that referenced
this issue
Feb 5, 2019
This was referenced Feb 5, 2019
jimhester
pushed a commit
that referenced
this issue
Feb 11, 2019
This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/ |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have noted the following difference in behaviour of readr v1.1.1 and readr v1.3.0 when handling empty gzipped files.
readr v1.1.1
# A tibble: 0 x 0
gzip empty.txt R --slave --vanilla -e "readr::read_tsv('empty.txt.gz')"
# A tibble: 0 x 0
readr v1.3.1
# A tibble: 0 x 0
gzip empty.txt R --slave --vanilla -e "readr::read_tsv('empty.txt.gz')"
The text was updated successfully, but these errors were encountered: