-
Notifications
You must be signed in to change notification settings - Fork 319
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 avg
, count
, min
and max
ops in runner
#1627
feat: add avg
, count
, min
and max
ops in runner
#1627
Conversation
ecb2dad
to
b3f6280
Compare
Codecov Report
@@ Coverage Diff @@
## main #1627 +/- ##
============================================
+ Coverage 67.42% 67.76% +0.33%
Complexity 323 323
============================================
Files 607 608 +1
Lines 115890 116954 +1064
Branches 1000 1000
============================================
+ Hits 78141 79250 +1109
+ Misses 37542 37497 -45
Partials 207 207
Continue to review full report at Codecov.
|
@@ -231,7 +231,9 @@ bool LongWindowOptimized::OptimizeWithPreAggr(vm::PhysicalAggrerationNode* in, i | |||
LOG(ERROR) << "Fail to create PhysicalReduceAggregationNode: " << status; | |||
return false; | |||
} | |||
LOG(INFO) << "[LongWindowOptimized] Before transform sql:\n" << (*output)->GetTreeString(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DEBUG log ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Forgot to discuss this in the PR review.
For testing and verification, we need some log information to see whether we are really using long_window
optimization or not.
Since the log
will only print during deploy
, it is kind of acceptable. What do you think?
If it is too annoying, can change to Debug
log.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if only in deploy, it's no matter
close #1244
close #1245
close #1246
close #1247