Fix some whitespace, add note for failing test.

FossilOrigin-Name: 082dff9df32ccebaf9a2fa51d9cedf736af42c60cfb243a228bad545e024c90d
This commit is contained in:
mahlon 2025-03-24 02:18:24 +00:00
parent 05291751cb
commit ac222369f0
2 changed files with 51 additions and 46 deletions

View file

@ -7,6 +7,9 @@ weird prepared statement binding behavior?
I don't know. Maybe it's just me. I don't know. Maybe it's just me.
https://docs.kuzudb.com/get-started/prepared-statements/ https://docs.kuzudb.com/get-started/prepared-statements/
% clang -lkuzu -o prepared-test prepared-test.c
*/ */
#include <stdio.h> #include <stdio.h>

View file

@ -18,6 +18,8 @@ for thing in @[ "Camel", "Lampshade", "Delicious Cake" ]:
q = p.execute( (thing: thing) ) q = p.execute( (thing: thing) )
assert typeOf( q ) is KuzuQueryResult assert typeOf( q ) is KuzuQueryResult
# This is failing until I can address
# https://github.com/kuzudb/kuzu/issues/5102
q = conn.query( "MATCH (d:Doop) RETURN d.thing" ) q = conn.query( "MATCH (d:Doop) RETURN d.thing" )
echo $q echo $q