We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd0238a commit c371215Copy full SHA for c371215
optd-cost-model/src/memo_ext.rs
@@ -13,8 +13,8 @@ use crate::common::{
13
pub trait MemoExt: Send + Sync + 'static {
14
/// Get the schema of a group in the memo.
15
fn get_schema(&self, group_id: GroupId) -> Schema;
16
- /// Get the column reference of a group in the memo.
17
- fn get_column_ref(&self, group_id: GroupId) -> GroupAttrRefs;
+ /// Get the attribute reference of a group in the memo.
+ fn get_attribute_ref(&self, group_id: GroupId) -> GroupAttrRefs;
18
/// Get the attribute information of a given attribute in a group in the memo.
19
fn get_attribute_info(&self, group_id: GroupId, attr_ref_idx: u64) -> Attribute;
20
0 commit comments