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

Implement a predicate push-down engine #43

Open
beikov opened this issue Jan 31, 2022 · 0 comments
Open

Implement a predicate push-down engine #43

beikov opened this issue Jan 31, 2022 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@beikov
Copy link
Member

beikov commented Jan 31, 2022

The idea is to make the usecase of object filtering like #42 more efficient by implementing an engine that can split a predicate into parts that can be pushed down to act as filters for specific attributes.

A filter like root.name = 'abc' can be split into {"root": "name = 'abc'"}.

A filter like root.collection1.name = 'abc' could be split into {"root": "root.collection1 is not empty", "root.collection1": "name = 'abc'"}.

Maybe it makes sense to also allow empty collections i.e. apply left join semantics to such filters.

@beikov beikov added the enhancement New feature or request label Jan 31, 2022
@beikov beikov self-assigned this Jan 31, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant