Closed pan3793 closed 2 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 0.00%. Comparing base (
8056235
) to head (a73fd42
). Report is 2 commits behind head on master.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Thanks, merged to master/1.9.3/1.8.3
:mag: Description
Issue References 🔗
The server module does not consume the
spark-sql-engine
classes, but it supposes thatspark-sql-engine
's jar existed on the target folder, so here we declare it as a dependency to make sure that Maven always processesspark-sql-engine
module before the server module. IntelliJ IDEA 2024.1 fixed the IDEA-93855, thus the relocated classes inside thespark-sql-engine
's shaded jar are visible in the server module in IDEA, for example,org.apache.kyuubi.shaded.spark.connect.proto.ExecutePlanRequest
, which silently breaks the IDEA code analysis and jumping capabilities.Describe Your Solution 🔧
Changing the dependency type from
jar
(default value) topom
seems to be a workaround.Types of changes :bookmark:
Test Plan 🧪
Behavior Without This Pull Request :coffin:
Behavior With This Pull Request :tada:
Checklist 📝
Be nice. Be informative.