alibaba / alibaba/GraphScope

[BUG] Dynamic params are not passed to physical layer

Open
#3,665 2 comments 0 reactions 1 assignee Claimed by @BingqingLyu View on GitHub
stale
Dominant language
C++
Stars
3.6k
Forks
468
Avg merge
29m
Merged PRs (30d)
1

Description

```cypher
MATCH (p: PERSON{id: $personId}) -[k:KNOWS*1..4]-(f: PERSON {firstName: $firstName})
WHERE p <> f
with f AS f, length(k) as len
with f AS f, min(len) as distance
ORDER BY distance ASC, f.lastName ASC, f.id ASC
LIMIT 20
```
For example, When using `GraphPlanner` to generate the physical plan for this query, only one dynamic param presents.
`1 firstName`, the `$personid` is missing.

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.