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

fix: isCometEnabled name conflict #1569

Merged
merged 5 commits into from
Mar 26, 2025

Conversation

kazuyukitanimura
Copy link
Contributor

Which issue does this PR close?

Rationale for this change

We have a name collision on isCometEnabled

CometSparkSessionExtensions
private[comet] def isCometEnabled(conf: SQLConf): Boolean = {

and

SQLTestUtilsBase
protected def isCometEnabled: Boolean = SparkSession.isCometEnabled

causing build issues depending on which one gets picked up

[ERROR] /workspace/spark/src/test/scala/org/apache/comet/CometSparkSessionExtensionsSuite.scala:34: Boolean does not take parameters
[ERROR] /workspace/spark/src/test/scala/org/apache/comet/CometSparkSessionExtensionsSuite.scala:42: Boolean does not take parameters
[ERROR] /workspace/spark/src/test/scala/org/apache/comet/CometSparkSessionExtensionsSuite.scala:47: Boolean does not take parameters

What changes are included in this PR?

Renamed one to isCometLoaded

How are these changes tested?

CI

@codecov-commenter
Copy link

codecov-commenter commented Mar 25, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 58.49%. Comparing base (f09f8af) to head (667c19e).
Report is 103 commits behind head on main.

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.
📢 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

@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.

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))
Copy link
Contributor

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?

Copy link
Contributor

Choose a reason for hiding this comment

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

+1

Copy link
Contributor Author

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

Copy link
Contributor

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

It used to be CometSparkSessionExtensions.isCometEnabled and was changed here: badbd37

I'm okay with the new name though.

@kazuyukitanimura
Copy link
Contributor Author

TBH, I don't see how this conflict is occurring. CometSparkSessionExtensionSuite has no reference to SQLTestUtilsBase

CometSparkSessionExtensionSuite -> CometTestBase -> SQLTestUtils -> SQLTestUtilsBase (in the diff)

Copy link
Contributor

@comphead comphead left a 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

@kazuyukitanimura kazuyukitanimura merged commit c58f261 into apache:main Mar 26, 2025
68 checks passed
@kazuyukitanimura
Copy link
Contributor Author

Thanks merged @parthchandra @comphead

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