-
Notifications
You must be signed in to change notification settings - Fork 433
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
feat: rewrite operations #852
Merged
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
0d62767
feat: rewrite operations
roeap 032d9a7
chore: cleanup
roeap edc9711
Merge branch 'main' into operations
roeap f9a9d49
docs: add basic docstrings to some DeltaOps methods
roeap 7160697
try fixing windows tests
roeap fa775b6
feat: writer updates
roeap 57d643b
fix: migrate arrow-pyarrow conversions
roeap e42743d
test: fix parquet2 build
roeap 7cfcf5b
try using tempfile to fix failing windows tests
roeap cb6e214
fix: use list to determine if delta location
roeap 47ac52c
Apply suggestions from code review
roeap a3361c1
revert option partition columns
roeap 9f3727e
PR comments
roeap bfc2b9b
Merge branch 'main' into operations
roeap 1294fee
chore: fix some 1.65 clippy errors
roeap ce37e4f
chore: more clippy
roeap 04d7584
chore: remove unstable option
roeap 2181460
fix: fail on create with overwrite
roeap 6b30e97
fix: unused import
roeap 200e1d7
fix: omit create overwrite test
roeap b88c42d
Merge branch 'main' into operations
roeap 6ebc8a8
fix: don't use newly deprecated chrono functions in parquet2
roeap File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,3 @@ members = [ | |
"dynamodb_lock", | ||
] | ||
exclude = ["proofs", "delta-inspect"] | ||
|
||
[profile.dev] | ||
split-debuginfo = "unpacked" | ||
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
[package] | ||
name = "deltalake" | ||
version = "0.4.1" | ||
rust-version = "1.64" | ||
authors = ["Qingping Hou <[email protected]>"] | ||
homepage = "https://github.com/delta-io/delta.rs" | ||
license = "Apache-2.0" | ||
|
@@ -9,7 +10,7 @@ description = "Native Delta Lake implementation in Rust" | |
edition = "2021" | ||
|
||
[dependencies] | ||
arrow = { version = "22", optional = true } | ||
arrow = { version = "24", optional = true } | ||
async-trait = "0.1" | ||
bytes = "1" | ||
chrono = "0.4.22" | ||
|
@@ -23,14 +24,14 @@ num-bigint = "0.4" | |
num-traits = "0.2.15" | ||
object_store = "0.5.1" | ||
once_cell = "1.16.0" | ||
parquet = { version = "22", features = ["async"], optional = true } | ||
parking_lot = "0.12" | ||
parquet = { version = "24", features = ["async"], optional = true } | ||
parquet2 = { version = "0.16", optional = true } | ||
parquet-format = { version = "~4.0.0" } | ||
percent-encoding = "2" | ||
serde = { version = "1", features = ["derive"] } | ||
serde_json = "1" | ||
thiserror = "1" | ||
tokio = { version = "1", features = ["macros", "rt"] } | ||
tokio = { version = "1", features = ["macros", "rt", "parking_lot"] } | ||
regex = "1" | ||
uuid = { version = "1", features = ["serde", "v4"] } | ||
url = "2.3" | ||
|
@@ -45,9 +46,9 @@ rusoto_dynamodb = { version = "0.48", default-features = false, optional = true | |
rusoto_glue = { version = "0.48", default-features = false, optional = true } | ||
|
||
# Datafusion | ||
datafusion = { version = "12", optional = true } | ||
datafusion-expr = { version = "12", optional = true } | ||
datafusion-common = { version = "12", optional = true } | ||
datafusion = { version = "13", optional = true } | ||
datafusion-expr = { version = "13", optional = true } | ||
datafusion-common = { version = "13", optional = true } | ||
|
||
# NOTE dependencies only for integration tests | ||
fs_extra = { version = "1.2.0", optional = true } | ||
|
Oops, something went wrong.
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.
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.
Not entirely sure why why had this option. however it seems it is only stable on macOS, and was causing build issues for Windows after 1,65 was released, so I removed it.