Skip to content
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

feat: make parquet native scan schema case insensitive #1575

Merged
merged 1 commit into from
Mar 28, 2025

Conversation

wForget
Copy link
Member

@wForget wForget commented Mar 27, 2025

Which issue does this PR close?

Part of #1574.

Rationale for this change

The data schema of spark parquet datasource scan may not be consistent with the actual schema of file. This may cause the projection/filter to not behave as expected.

What changes are included in this PR?

This PR makes data schema and file schema case insensitive in schema adapter, but it does not affect pruning_predicate and page_pruning_predicate.

How are these changes tested?

added unit test

sql("create table test (A long) using parquet options (path '" + path + "')")
val df = sql("select A from test where A > 5")
checkSparkAnswer(df)
// TODO: pushed down filters do not used schema adapter in datafusion, will cause empty result
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think we should fix this in the parquet reader (parquet by itself does not specify whether the field names are case sensitive/insensitive).
Comet is the right place to fix this, I feel.

@codecov-commenter
Copy link

codecov-commenter commented Mar 27, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 58.49%. Comparing base (f09f8af) to head (e9fdb2c).
Report is 104 commits behind head on main.

Additional details and impacted files
@@             Coverage Diff              @@
##               main    #1575      +/-   ##
============================================
+ Coverage     56.12%   58.49%   +2.37%     
- Complexity      976      977       +1     
============================================
  Files           119      122       +3     
  Lines         11743    12231     +488     
  Branches       2251     2278      +27     
============================================
+ Hits           6591     7155     +564     
+ Misses         4012     3945      -67     
+ Partials       1140     1131       -9     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Copy link
Contributor

@kazuyukitanimura kazuyukitanimura left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@@ -110,6 +110,7 @@ fn get_options(session_timezone: &str) -> (TableParquetOptions, SparkParquetOpti
let mut spark_parquet_options =
SparkParquetOptions::new(EvalMode::Legacy, session_timezone, false);
spark_parquet_options.allow_cast_unsigned_ints = true;
spark_parquet_options.case_sensitive = false;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if it makes sense to take the value from spark.sql.caseSensitive although this is an internal config and false by default

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I noticed there is a TODO comment above, maybe we can make them configurable in the future

// TODO: Maybe these are configs?

@kazuyukitanimura kazuyukitanimura merged commit a986894 into apache:main Mar 28, 2025
68 checks passed
@kazuyukitanimura
Copy link
Contributor

Merged, thanks @wForget

Copy link
Contributor

@parthchandra parthchandra left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the test and fix @wForget

sql("create table test (A long) using parquet options (path '" + path + "')")
val df = sql("select A from test where A > 5")
checkSparkAnswer(df)
// TODO: pushed down filters do not used schema adapter in datafusion, will cause empty result
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think we should fix this in the parquet reader (parquet by itself does not specify whether the field names are case sensitive/insensitive).
Comet is the right place to fix this, I feel.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants