Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Commit 36e28ee

Browse files
authored
refactor(core): abstract memo table into a trait (#211)
The current memo table implementation is refactored into a trait, and the implementation is called `NaiveMemo`. --------- Signed-off-by: Alex Chi <[email protected]>
1 parent 9a69cea commit 36e28ee

File tree

5 files changed

+242
-239
lines changed

5 files changed

+242
-239
lines changed

Diff for: optd-core/src/cascades.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ mod memo;
44
mod optimizer;
55
mod tasks;
66

7-
pub use memo::Memo;
7+
pub use memo::{Memo, NaiveMemo};
88
pub use optimizer::{CascadesOptimizer, ExprId, GroupId, OptimizerProperties, RelNodeContext};
99
use tasks::Task;

0 commit comments

Comments
 (0)