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

I think the progress bar in CLI and Explorer are very good features and they should be enabled by default. I remember that there was an argument that if someone...

usability

I tried this: ``` explain MATCH (a)-[e]->(b) HINT (a JOIN b) JOIN e RETURN *; Error: Binder exception: Cannot resolve join condition. ``` Two things: 1) We should either support...

documentation
high-priority
new-release

Can we give a better error for this case. I'm using b twice in the join order: ``` kuzu> explain match (a:Person)-[e1]->(b:Person)-[e2]->(c:Person) HINT (a JOIN (e1 JOIN b)) JOIN ((b...

### API Other ### Description We currently have a bunch of json files used for testing purpose, however a better design is to reuse existing csv files. Similar to parquet...

feature
testing

### API Python ### Description We currently allow attaching to a remote Kuzu db if its wal file is empty. However with the new MVCC mechanism, wal files will generally...

feature
transactions
extensions

### Kùzu version master ### What operating system are you using? MAC M1 ### What happened? If the file cache is present, we should avoid fetching the metadata information again....

bug

### API Other ### Description We already supported attaching to a local duckdb/sqlite database through our duckdb/sqlite extension (https://docs.kuzudb.com/extensions/rdbms/), and also remote kuzudb through httpfs extension (https://docs.kuzudb.com/extensions/httpfs/). However, we don't...

feature
high-priority

### API Other ### Description Table and column names are case insensitive when it comes to Kuzu tables, however, we force case sensitive when it comes to `LOAD FROM` statements....

usability
high-priority

### API Python ### Description Given the following csv file 'data' ``` iD 1 ``` and the following cypher queries ``` create node table tab(id int32, primary key(id)); copy tab...

feature

# Description Add [ALP library](https://github.com/cwida/ALP) for floating point compression to the repo. Actual integration to the library will be in a [separate PR](https://github.com/kuzudb/kuzu/pull/3994) # Contributor agreement - [ ] I...