Skip to content
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

Bug: Segmentation fault: WITH / OPTIONAL MATCH / WHERE EXISTS #4080

Closed
sapalli2989 opened this issue Aug 15, 2024 · 1 comment · Fixed by #4088
Closed

Bug: Segmentation fault: WITH / OPTIONAL MATCH / WHERE EXISTS #4080

sapalli2989 opened this issue Aug 15, 2024 · 1 comment · Fixed by #4088
Labels
bug Something isn't working

Comments

@sapalli2989
Copy link
Contributor

Kùzu version

nightly

What operating system are you using?

Fedora 40

What happened?

Can be reproduced by:

CREATE NODE TABLE V(id INT, PRIMARY KEY(id));
CREATE REL TABLE links_to(FROM V to V);
CREATE REL TABLE parent(FROM V to V);

CREATE (:V {id: 1}), (:V {id: 2});

WITH 2 as parent_id
OPTIONAL MATCH (v1:V)-[:links_to*0..]->(:V)
WHERE EXISTS {MATCH (v1)-[:parent]->(:V {id: parent_id})}
RETURN v1;

Are there known steps to reproduce?

No response

@sapalli2989 sapalli2989 added the bug Something isn't working label Aug 15, 2024
@andyfengHKU
Copy link
Contributor

Hi @sapalli2989, this should be fixed in #4088. Thanks for reporting.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants