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

perf(sql): speed up parallel sample by with fill #5143

Draft
wants to merge 23 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Merge branch 'refs/heads/master' into nw_fill_range_error
# Conflicts:
#	core/src/main/java/io/questdb/griffin/model/QueryModel.java
  • Loading branch information
nwoolmer committed Jan 10, 2025
commit 924b6481e670d39bdb97be09613ef7393effeb99
10 changes: 10 additions & 0 deletions core/src/main/java/io/questdb/griffin/model/QueryModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,16 @@ public void copyOrderBy(ObjList<ExpressionNode> orderBy) {
this.orderBy.addAll(orderBy);
}

public void copyDeclsFrom(QueryModel model) {
copyDeclsFrom(model.getDecls());
}

public void copyDeclsFrom(LowerCaseCharSequenceObjHashMap<ExpressionNode> decls) {
if (decls != null && decls.size() > 0) {
this.decls.putAll(decls);
}
}

public void copyOrderByAdvice(ObjList<ExpressionNode> orderByAdvice) {
this.orderByAdvice.clear();
this.orderByAdvice.addAll(orderByAdvice);
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.