-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(core): remove rule wrapper (#229)
yet another thing we can remove after the predicate refactor. --------- Signed-off-by: Alex Chi <iskyzh@gmail.com>
- Loading branch information
Showing
13 changed files
with
76 additions
and
163 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,26 @@ | ||
[package] | ||
name = "optd-datafusion-repr-adv-cost" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
description = "datafusion plan representation for optd" | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
homepage = { workspace = true } | ||
keywords = { workspace = true } | ||
license = { workspace = true } | ||
repository = { workspace = true } | ||
|
||
[dependencies] | ||
anyhow = "1" | ||
arrow-schema = "47.0.0" | ||
assert_approx_eq = "1.1.0" | ||
datafusion = "32.0.0" | ||
ordered-float = "4" | ||
optd-datafusion-repr = { path = "../optd-datafusion-repr" } | ||
optd-core = { path = "../optd-core" } | ||
optd-datafusion-repr = { path = "../optd-datafusion-repr", version = "0.1" } | ||
optd-core = { path = "../optd-core", version = "0.1" } | ||
serde = { version = "1.0", features = ["derive"] } | ||
rayon = "1.10" | ||
itertools = "0.13" | ||
test-case = "3.3" | ||
tracing = "0.1" | ||
tracing-subscriber = "0.3" | ||
optd-gungnir = { path = "../optd-gungnir" } | ||
optd-gungnir = { path = "../optd-gungnir", version = "0.1" } | ||
serde_with = { version = "3.7.0", features = ["json"] } |
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.