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

ARROW-14350: [IR] Add filter expression to Source node #11438

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 20 additions & 1 deletion cpp/src/generated/Relation_generated.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions experimental/computeir/Relation.fbs
Expand Up @@ -197,6 +197,13 @@ table LiteralRelation {
table Source {
base: RelBase (required);
name: string (required);
/// An optional expression used to filter out rows directly from the source.
///
/// Useful for consumers that implement predicate pushdown.
///
/// A missing filter value indicates no filter, i.e., all rows are
/// returned from the source.
filter: Expression;
schema: org.apache.arrow.flatbuf.Schema (required);
}

Expand Down