-
Notifications
You must be signed in to change notification settings - Fork 194
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
fix: isCometEnabled name conflict #1569
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1569 +/- ##
============================================
+ 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. 🚀 New features to boost your workflow:
|
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.
TBH, I don't see how this conflict is occurring. CometSparkSessionExtensionSuite
has no reference to SQLTestUtilsBase
val conf = new SQLConf | ||
|
||
conf.setConfString(CometConf.COMET_ENABLED.key, "false") | ||
assert(!isCometEnabled(conf)) | ||
assert(!isCometLoaded(conf)) |
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.
Maybe use CometSparkSessionExtensions.isCometEnabled
instead of renaming the method?
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.
+1
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.
Thanks, I thought about it but since both version of isCometEnabled
would be still accessible, especially due to
import CometSparkSessionExtensions._
, this may cause future issues for using isCometEnabled
like adding new tests.
I am ok with CometSparkSessionExtensions.isCometEnabled
but changing the name entirely is more future proof? WDTY @parthchandra @comphead
Also CometSparkSessionExtensions.isCometEnabled
is checking NativeBase.isLoaded
, so I think isCometLoaded
makes sense
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.
Thanks, I thought about it but since both version of
isCometEnabled
would be still accessible, especially due toimport CometSparkSessionExtensions._
, this may cause future issues for using
isCometEnabled
like adding new tests. I am ok withCometSparkSessionExtensions.isCometEnabled
but changing the name entirely is more future proof? WDTY @parthchandra @comphead AlsoCometSparkSessionExtensions.isCometEnabled
is checkingNativeBase.isLoaded
, so I thinkisCometLoaded
makes sense
It used to be CometSparkSessionExtensions.isCometEnabled and was changed here: badbd37
I'm okay with the new name though.
CometSparkSessionExtensionSuite -> CometTestBase -> SQLTestUtils -> SQLTestUtilsBase (in the diff) |
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.
as long as there is no end user changes I think we can go and merge the PR
spark/src/main/scala/org/apache/comet/CometSparkSessionExtensions.scala
Outdated
Show resolved
Hide resolved
spark/src/main/scala/org/apache/comet/CometSparkSessionExtensions.scala
Outdated
Show resolved
Hide resolved
Thanks merged @parthchandra @comphead |
Which issue does this PR close?
Rationale for this change
We have a name collision on
isCometEnabled
and
causing build issues depending on which one gets picked up
What changes are included in this PR?
Renamed one to
isCometLoaded
How are these changes tested?
CI