Multiple changes.

- Minor README updates.
- Create LICENSE and History files.
- Use 'func' instead of 'proc' where applicable.
- Add some destructor debug.
- Rename primary exceptions to 'X-error'.
- Bind to proper object types in prepared statement parameters.
- Retain the found 'type' in the KuzuValue object.

FossilOrigin-Name: db59c0b901b1715170e0d269fc2bf00477ac48af4d10a747eb5a749adbf6268e
This commit is contained in:
mahlon 2025-03-29 23:17:10 +00:00
parent 421cb87e57
commit db85c36d70
22 changed files with 284 additions and 162 deletions

View file

@ -12,6 +12,6 @@ q = conn.query( "MATCH (d:Doop) RETURN d.thing" )
try:
discard q.getNext
except KuzuIndexException as err:
except KuzuIndexError as err:
assert err.msg.contains( re"""Query iteration past end.""" )

View file

@ -15,6 +15,6 @@ let tup = q.getNext
try:
echo tup[22]
except KuzuIndexException as err:
except KuzuIndexError as err:
assert err.msg.contains( re"""Unable to fetch tuple value at idx 22.""" )