BingqingLyu
BingqingLyu
## What do these changes do? 1. Provide profile tools in GAIA-IR, to show information of time cost, number of intermediate results in each operator, etc. 2. Provide graphviz to...
## What do these changes do? As titled. ## Related issue number Fixes #1965
**Describe the bug** A clear and concise description of what the bug is. A Encode/Decode error occurs when running BI3 as follows: ``` g.V().has("COUNTRY", "name", "China").in("ISPARTOF").in("ISLOCATEDIN").as("person") .in("HASMODERATOR").as("forum") .out("CONTAINEROF").in("0..6", "REPLYOF").endV().as("msg") .out("HASTAG").out("HASTYPE").has("TAGCLASS",...
**Is your feature request related to a problem? Please describe.** Optimize structure of `Record` in GAIA-Runtime. Now `Record` is a little bit complex and may involve extra cost.
**Is your feature request related to a problem? Please describe.** Benchmark BI queries on IR, including: - [x] prepare gremlin queries for bi test - [x] prepare benchmark dataset -...
**Is your feature request related to a problem? Please describe.** Introduce a new `ExtendStrategy` to generate WCO plan based on `ExtendIntersect` for pattern matching, which is supposed to be more...
**Is your feature request related to a problem? Please describe.** Unify Integrated CI Test Cases for GIE on exp_store/Groot/Vineyard. Currently, we have 3 entries of ci tests on different storages:...
**Describe the bug** A clear and concise description of what the bug is. In `GIE-IR`, it would fuse `filter` into `Auxilia` to enable optimization of pushing filter down into Store...
**Describe the bug** Run the following query with `exp_store` on LDBC dataset outputs empty results, which is not as expected: `g.V().has("COUNTRY", "name", "India").in("ISPARTOF").hasLabel("CITY")` This is caused by the hierarchical label...
## What do these changes do? As titled. Support `Intersect` with `PathExpand` operator in GIE Runtime, to be compatible with the new compilation output. ## Related issue number Fixes