-
Notifications
You must be signed in to change notification settings - Fork 435
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* optimize vacuum operation Avoid repeatedly creating strings and vectors at runtime. Turn O(n) path lookup into O(1) with Hashset. Early exit in stale file check loop. * rename table uri to table path everywhere for consistency * change path in public methods to uri * bump python version
- Loading branch information
QP Hou
authored
Jun 2, 2021
1 parent
e48336d
commit d922b31
Showing
17 changed files
with
371 additions
and
196 deletions.
There are no files selected for viewing
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,6 @@ | ||
[package] | ||
name = "deltalake-python" | ||
version = "0.4.9" | ||
version = "0.5.0" | ||
authors = ["Qingping Hou <[email protected]>"] | ||
homepage = "https://github.com/delta-io/delta-rs" | ||
license = "Apache-2.0" | ||
|
@@ -54,4 +54,4 @@ requires-dist = [ | |
"sphinx-rtd-theme; extra == 'devel'", | ||
"toml; extra == 'devel'", | ||
] | ||
provides-extra = ["pandas", "devel"] | ||
provides-extra = ["pandas", "devel"] |
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
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
Oops, something went wrong.