-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
format go yield #2944
Merged
Merged
format go yield #2944
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nevermore3
added
doc affected
PR: improvements or additions to documentation
wip
Solution: work in progress
labels
Sep 27, 2021
subjob of #2594 |
nevermore3
force-pushed
the
format_go
branch
11 times, most recently
from
September 29, 2021 13:11
41066e3
to
f52cee7
Compare
nevermore3
force-pushed
the
format_go
branch
from
September 29, 2021 13:54
f52cee7
to
dccaea0
Compare
nevermore3
added
ready-for-testing
PR: ready for the CI test
and removed
wip
Solution: work in progress
labels
Sep 29, 2021
yixinglu
reviewed
Sep 30, 2021
nevermore3
force-pushed
the
format_go
branch
from
September 30, 2021 05:51
f2c4ad7
to
5b5fa01
Compare
yixinglu
reviewed
Sep 30, 2021
CPWstatic
previously approved these changes
Sep 30, 2021
yixinglu
reviewed
Sep 30, 2021
yixinglu
reviewed
Sep 30, 2021
for (auto* col : goCtx_->yieldExpr->columns()) { | ||
auto* vertexExpr = ExpressionUtils::findAny(col->expr(), {Expression::Kind::kVertex}); | ||
if (vertexExpr != nullptr) { | ||
const auto& colName = static_cast<const VertexExpression*>(vertexExpr)->name(); |
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 (existExpr.count(colName)==0) {
if (colName == SRC) {
} else if (colName == DST) {}
existExpr[colName] = true;
}
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.
fix in other PR
yixinglu
approved these changes
Sep 30, 2021
CPWstatic
approved these changes
Sep 30, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
doc affected
PR: improvements or additions to documentation
ready-for-testing
PR: ready for the CI test
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
$^ represents the starting point of the edge
$$ represents the destination point of the edge
go from 'a' over * yield$^ as startNode, $ $ as endNode, edge as relationship
the type of$^ and $ $ is VERTEX, must add alias when use $^ or $ $