fix: align arrow version with spark and add docker integration tests#205
Merged
jackye1995 merged 6 commits intolance-format:mainfrom Feb 6, 2026
Merged
fix: align arrow version with spark and add docker integration tests#205jackye1995 merged 6 commits intolance-format:mainfrom
jackye1995 merged 6 commits intolance-format:mainfrom
Conversation
Signed-off-by: Daniel Rammer <hamersaw@protonmail.com>
jackye1995
reviewed
Feb 5, 2026
jackye1995
reviewed
Feb 5, 2026
Contributor
jackye1995
left a comment
There was a problem hiding this comment.
We should make sure we run this in CI
Signed-off-by: Daniel Rammer <hamersaw@protonmail.com>
Signed-off-by: Daniel Rammer <hamersaw@protonmail.com>
Signed-off-by: Daniel Rammer <hamersaw@protonmail.com>
jackye1995
reviewed
Feb 6, 2026
jackye1995
reviewed
Feb 6, 2026
jackye1995
reviewed
Feb 6, 2026
Signed-off-by: Daniel Rammer <hamersaw@protonmail.com>
Signed-off-by: Daniel Rammer <hamersaw@protonmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The recent upgrade of arrow version (15.0 -> 18.3) in lance-core does not play well with Spark 3.5. This results in failures within the Lance Spark connector for simple operations (ex.
CREATE TABLE). In this PR we pin the arrow version to 15.0 (used for ~2 years) for all 3.5 and 3.4 profiles. The other alternative approaches are to (1) downgrade lance-core arrow dependency or (2) maintain separate lance-core branches. This seems like the most reasonable approach.Future work will be to integrate these into our CI pipeline.
Closes: #196