Closed kadyb closed 1 year ago
Interestingly I think vroom actually hardcodes its ability to guess types as integers to false
https://github.com/tidyverse/vroom/blob/3691c6833006d319b2edca378258333fb9161135/src/collectors.h#L190
From readr v1.2.0 on, readr has never guessed integer https://readr.tidyverse.org/news/index.html?q=guess#readr-120.
And, I assume, vroom simply never guessed integer.
IIRC, in both readr and vroom, if you want integer, you have to specify it explicitly.
I'm quite sure this is an intentional design decision that came from hard lessons learned in readr.