You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tag maintain in group operator.
An example is g.V().group().by(values("name").as("a")).select("a"), which output the following bug:
identifying what properties should be carried in advance.
An example is g.V().group().by(outE().count()).by("name"), where "name" should be cached in the source operator g.V(), otherwise, we could not get property of "name" locally after grouping.
Expected behavior: IR-Core should Identify "name" as a property that should be saved in the SourceOperator.
The text was updated successfully, but these errors were encountered:
BingqingLyu
changed the title
[BUG] Bug in Property Cache Strategy in Group
[BUG] Bugs of Tag Maintain and Property Cache Strategy in Group Operator
Jul 18, 2022
Describe the bug
Two bugs in
group()
in IR-Core:tag maintain in group operator.
An example is
g.V().group().by(values("name").as("a")).select("a")
, which output the following bug:identifying what properties should be carried in advance.
An example is
g.V().group().by(outE().count()).by("name")
, where"name"
should be cached in the source operatorg.V()
, otherwise, we could not get property of"name"
locally after grouping.Expected behavior: IR-Core should Identify
"name"
as a property that should be saved in the SourceOperator.The text was updated successfully, but these errors were encountered: