Skip to content

Commit

Permalink
rename to optd-core
Browse files Browse the repository at this point in the history
  • Loading branch information
connortsui20 committed Jan 28, 2025
1 parent 1c98d1a commit d54fd27
Show file tree
Hide file tree
Showing 25 changed files with 4 additions and 28 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,7 @@ jobs:
- name: Install cargo-docs-rs
uses: dtolnay/install@cargo-docs-rs
- name: cargo docs-rs
# TODO: Once we figure out the crates, rename this.
run: cargo docs-rs -p optd-tmp
run: cargo docs-rs -p optd-core
hack:
# cargo-hack checks combinations of feature flags to ensure that features are all additive
# which is required for feature unification
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[workspace]
members = ["optd-tmp", "optd-types"]
members = ["optd-core"]
resolver = "2"
2 changes: 1 addition & 1 deletion optd-types/Cargo.toml → optd-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "optd-types"
name = "optd-core"
version = "0.1.0"
edition = "2021"

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ pub struct PhysicalFilterRule;
impl ImplementationRule for PhysicalFilterRule {
fn check_and_apply(&self, expr: LogicalExpr) -> Option<PhysicalExpr> {
if let LogicalExpr::Filter(LogicalFilter { child, predicate }) = expr {
return Some(PhysicalExpr::Filter(PhysicalFilter {
child,
predicate,
}));
return Some(PhysicalExpr::Filter(PhysicalFilter { child, predicate }));
}

None
Expand Down
File renamed without changes.
File renamed without changes.
6 changes: 0 additions & 6 deletions optd-tmp/Cargo.toml

This file was deleted.

14 changes: 0 additions & 14 deletions optd-tmp/src/lib.rs

This file was deleted.

0 comments on commit d54fd27

Please sign in to comment.