kuzu icon indicating copy to clipboard operation
kuzu copied to clipboard

Embeddable property graph database management system built for query speed and scalability. Implements Cypher.

Results 285 kuzu issues
Sort by recently updated
recently updated
newest added

### Kùzu version v0.6.0 ### What operating system are you using? Arch Linux x64 ### What happened? I feel the relationship constraints are not working as documented in https://docs.kuzudb.com/cypher/data-definition/create-table/#relationship-multiplicities. This...

bug

E.g. the test `CopyTest.OutOfMemoryRecovery` (renamed to CopyTest.DISABLED_OutOfMemoryRecovery` in #4188) runs out of memory when committing (at the time of #4188) and then corrupts the database since the node group is...

bug

### Kùzu version v0.5.0 ### What operating system are you using? Mac OSX Sequoia 15.0 on Apple M1 Max chip ### What happened? The following cypher query ``` match (n:Drug)...

bug

### Kùzu version v0.6.0 ### What operating system are you using? Arch Linux x64 ### What happened? I'm running this list of queries against an empty DB: ```cypher CREATE NODE...

bug

### API Python ### Description The common regex to match an arbitrary number of spaces is `\s+`. When using the Python API in Kùzu, this doesn't seem to work. I'm...

bug
usability

### API Other ### Description We have a function called [`regexp_replace`](https://docs.kuzudb.com/cypher/expressions/text-functions) that replaces only the first match of a string based on a regex. However, we should also provide an...

feature

### Description Currently ScanNodeTable internally handles the case of scan from a single label or multiple labels. ScanRelTable and ScanMultiRelTable handles scanning from a single label and multiple labels respectively....

refactoring

### Kùzu version master branch ### What operating system are you using? Ubuntu 22.04.5 LTS ### What happened? The DuckDB postgres extension can leak memory as it does not call...

bug

### Description Currently, when we create rel tables, we always store rel tuples in a duplicated way that each tuple is stored in both forward and backward directed storage. This...

feature

We have some CALL functions such as the one for [clearing cached warnings](https://github.com/kuzudb/kuzu/issues/4226) that change some state in the connection/DB without needing to return anything. It would be nice to...

feature