kuzu
kuzu copied to clipboard
Embeddable property graph database management system built for query speed and scalability. Implements Cypher.
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...
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...
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...
### 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...
### 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....
### 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...
### 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....
### 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...
# 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...