fix: [native_scans] Support CASE_SENSITIVE when reading Parquet#1782
fix: [native_scans] Support CASE_SENSITIVE when reading Parquet#1782andygrove merged 5 commits intoapache:mainfrom
CASE_SENSITIVE when reading Parquet#1782Conversation
|
@wForget fyi |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1782 +/- ##
============================================
+ Coverage 56.12% 58.56% +2.43%
- Complexity 976 1140 +164
============================================
Files 119 130 +11
Lines 11743 12718 +975
Branches 2251 2371 +120
============================================
+ Hits 6591 7448 +857
- Misses 4012 4079 +67
- Partials 1140 1191 +51 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
This PR reads it from the |
We do have code that uses this config: if self.parquet_options.case_sensitive {
b.name() == field.name()
} else {
b.name().to_lowercase() == field.name().to_lowercase()
}The newly added test was previously failing for |
Which issue does this PR close?
Closes #1574
Rationale for this change
What changes are included in this PR?
How are these changes tested?