-
Notifications
You must be signed in to change notification settings - Fork 212
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Isolate PolarisSparkIntegrationTest #749
Comments
|
I think we would still have the dependency version mismatch issue, and Antlr would have to stay pinned to 4.9.3, which isn't great. |
Could also use #785 to start a "real" Polaris server and run the tests against that one. |
@adutra I think we're good now? |
Indeed, fixed by #1109. Closing. |
Is your feature request related to a problem? Please describe.
This test imports a bunch of
org.apache.spark.*
classes and because of that, causes trouble with dependencies:// required for PolarisSparkIntegrationTest testImplementation(enforcedPlatform(libs.scala212.lang.library)) testImplementation(enforcedPlatform(libs.scala212.lang.reflect)) testImplementation(libs.javax.servlet.api) testImplementation(libs.antlr4.runtime)
The above dependences, and in particular Antlr, prevents us from using
enforcedPlatform
on Quarkus BOM.Describe the solution you'd like
We need to isolate this test in its own configuration and/or module.
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: