-
Notifications
You must be signed in to change notification settings - Fork 61
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
Replaces partiql-memory with standard impls. #1636
Conversation
// TODO REMOVE ME, THIS IS REQUIRED FOR EQUALITY IN UNIT TESTS | ||
override fun equals(other: Any?): Boolean { | ||
if (this === other) return true | ||
if (other !is Table) return false | ||
return name == other.getName() | ||
} | ||
|
||
// TODO REMOVE ME, THIS IS REQUIRED FOR EQUALITY IN UNIT TESTS | ||
override fun hashCode(): Int = name.hashCode() |
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.
Are these TODOs still relevant? Seems to be carried over from what was in partiql-spi/src/main/kotlin/org/partiql/spi/catalog/Table.kt
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.
Yes, I didn't update the unit tests or anything.
CROSS-ENGINE-REPORT ❌
Testing Details
Result Details
Now FAILING Tests ❌The following 3 test(s) were previously PASSING in BASE but are now FAILING in TARGET: Click here to see
Now IGNORED Tests ❌The complete list can be found in GitHub CI summary, either from Step Summary or in the Artifact. Now Passing Tests180 test(s) were previously failing in BASE (LEGACY-V0.14.8) but now pass in TARGET (EVAL-332C16D). Before merging, confirm they are intended to pass. The complete list can be found in GitHub CI summary, either from Step Summary or in the Artifact. CROSS-COMMIT-REPORT ✅
Testing DetailsResult Details
|
Description
This replaces the partiql-memory plugin since we no longer use "plugin" per-say and just adds the same implementations to the SPI package. Now customers (see test updates) can use the SPI interfaces without requiring and additional dependency by getting the standard impls via common builder pattern.
Other Information
and Code Style Guidelines? YES
License Information
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.is pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.