-
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
fix rollup apply join #5244
fix rollup apply join #5244
Conversation
6580473
to
873f614
Compare
src/graph/executor/Executor.h
Outdated
} | ||
}; | ||
|
||
struct WrapperEqual { |
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.
namespace std {
template <>
struct hash<ListWrapper> {
size_t operator()(const ListWrapper& l) {}
};
template <>
struct equal_to<ListWrapper> {
int operator()(const ListWrapper&) {}
};
}
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.
done
RETURN ()-[e:like*2]->(n) | ||
""" | ||
Then the result should be, in any order: | ||
| ()-[e:like*2]->(n) = ()-[e:like*2]->(n) | |
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 the column name is different with the query?
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.
fixed
""" | ||
MATCH (v:player{name: 'Tim Duncan'})-[e:like]->(n) | ||
RETURN ()-[e:like]->(n) | ||
""" |
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.
more tests: bi-direction
MATCH (v:player{name: 'Tim Duncan'})-[e:like]-(n)
RETURN ()-[e:like]-(n)
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.
done
156e103
to
0095177
Compare
0095177
to
fac07c2
Compare
fac07c2
to
30a6a74
Compare
What type of PR is this?
What problem(s) does this PR solve?
Issue(s) number:
close #5209
Description:
How do you solve it?
Special notes for your reviewer, ex. impact of this fix, design document, etc:
Checklist:
Tests:
Affects:
Release notes:
Please confirm whether to be reflected in release notes and how to describe: