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

fix(DQL): optimize query for has function with offset. #7727

Merged
merged 5 commits into from
Apr 20, 2021
Merged
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
2 changes: 2 additions & 0 deletions protos/pb.proto
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ message Query {
int32 cache = 14;
int32 first = 15; // used to limit the number of result. Typically, the count is value of first
// field. Now, It's been used only for has query.
int32 offset = 16; // offset helps in fetching lesser results for the has query when there is
// no filter and order.
}

message ValueList {
Expand Down
Loading