Open MaxGekk opened 10 months ago
We faced to the issue in Apache Spark since the column pruning feature is enabled by default in the CSV datasource. It would be nice to fix the issue in uniVocity
instead of disabling the feature by default. cc @cloud-fan @HyukjinKwon
On the following file:
when I select the index 0, I would expect 1, 5, 3, 10 but got 1, 5, 10.
Here is the example which reproduces the issue:
the output is:
but when I select at least 3 indexes (0, 1, 2) or remove
settings.selectIndexes(0)
, the output is correct.