Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add anchor for non-ordinal plan reference #726

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion proto/substrait/algebra.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1633,8 +1633,12 @@ message AggregateFunction {
}
}

// This rel is used to create references,
// This rel is used to create references,
// in case we refer to a RelRoot field names will be ignored
message ReferenceRel {
// points to a PlanRel in Plan.relations (ordinal reference)
int32 subtree_ordinal = 1;

// points to a subtree_anchor in PlanRel (for non-ordinal reference)
uint32 subtree_reference = 2;
}
3 changes: 3 additions & 0 deletions proto/substrait/plan.proto
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ message PlanRel {
// The root of a relation tree
RelRoot root = 2;
}

// provides a non-ordinal anchor for ReferenceRel
uint32 subtree_anchor = 3;
}

// Describe a set of operations to complete.
Expand Down
Loading