-
Notifications
You must be signed in to change notification settings - Fork 98
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: Unstable query in Kuzu Nightly Builds 0.4.3.23 #3605
Comments
@joyemang33 could you also let us know what exact OS you are running Kùzu on? I confirm that I ran this on 0.4.3.dev27 and it returns a different count than the ones you observed. 0.4.3dev27
However, I also get the same results on the current stable release (0.4.2) of Kuzu: 0.4.2
0.3.2In v0.3.2 I get a segfault:
0.3.0In v0.3.0 I get a memory allocation error:
Here's my code to quickly reproduce the Python errors: import shutil
import kuzu
import json
shutil.rmtree("./test", ignore_errors=True)
db = kuzu.Database("./test")
conn = kuzu.Connection(db)
queries = []
with open("G_47.json") as f:
queries = json.load(f)
for query in queries:
conn.execute(query)
query = "MATCH (n1)-[]-(n2:L1:L0) WHERE (n2.p53 <> n1.p43) OR (n2.p29 = n1.p14) RETURN COUNT (*)"
res = conn.execute(query).get_as_pl()
print(res) |
Ditto I'm getting consistent 126 on |
Sorry for missing the information about my OS version. Best regards, |
Hi @joyemang33 Thanks, |
I cannot reproduce this anymore on latest master, which is after #3718 . |
Kùzu version
0.4.3.23
What happened?
The following query will result in unstable results even in the nightly builds, i.e., 0 or 109:
Are there known steps to reproduce?
The graph data can be imported by the attached JSON file. here
Thank you once again for your kind help in investigating those bug reports!
Best regards,
Qiuyang
The text was updated successfully, but these errors were encountered: