-
Notifications
You must be signed in to change notification settings - Fork 245
[WIP]feat: Implement array-to-string cast support #2425
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
base: main
Are you sure you want to change the base?
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #2425 +/- ##
============================================
+ Coverage 56.12% 58.35% +2.23%
- Complexity 976 1436 +460
============================================
Files 119 146 +27
Lines 11743 13515 +1772
Branches 2251 2352 +101
============================================
+ Hits 6591 7887 +1296
- Misses 4012 4393 +381
- Partials 1140 1235 +95 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
15e8ee2
to
effb775
Compare
} | ||
|
||
test("cast ArrayType to StringType") { | ||
sql("set spark.comet.explainFallback.enabled=true") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We tend to use withSQLConf
to set configs in tests so that the config change is isolated to the specific test.
sql("set spark.comet.explainFallback.enabled=true") | |
withSQLConf(CometConf.COMET_EXPLAIN_FALLBACK_ENABLED.key -> "true") { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, I see, this is just for debugging GA failures.
d461986
to
2f160fc
Compare
2f160fc
to
c104e3f
Compare
Which issue does this PR close?
Closes #.
Rationale for this change
What changes are included in this PR?
How are these changes tested?