-
Notifications
You must be signed in to change notification settings - Fork 132
Conversation
3d8792c
to
bbbf41a
Compare
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.
LGTM
d17d726
to
fbb89aa
Compare
@@ -97,119 +97,6 @@ Feature: With clause and Unwind clause | |||
| age | | |||
| 23 | | |||
|
|||
Scenario: unwind return |
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.
Why delete these?
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.
Moved to Unwind.feature
|
||
auto iter = ectx_->getResult(unwind->inputVar()).iter(); | ||
DCHECK(!!iter); | ||
auto &inputRes = ectx_->getResult(unwind->inputVar()); |
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.
What's the improvement?
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.
Removed a inner for-block to avoid expression overhead.
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.
LGTM
This PR refactored the implementation of unwind, and did the following things: