Semih Salihoglu

Results 22 issues of Semih Salihoglu

In the documentation for Variant, I said that Variant data type can only be integer, double, decimal, boolean, date. This is inaccurate. These are the data types that we can...

documentation
feature
rdf

We need to think through how we will maintain extension versions and require users to reinstall them as they bump up or down their Kuzu versions. Specifically we need to...

high-priority
extensions

# Phase 2 Roadmap Note: This only documents important features/changes that we aim to deliver in the next phase, and it will be refreshed and updated as we move on....

## High-level Goals Our transaction support has several fundamental limitations: (i) we do not allow concurrent write transactions; and (ii) we immediately checkpoint after each write, which has a phase...

performance optimization
updates-trxs

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 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

This PR was fixing a bug with the recursive joins: https://github.com/kuzudb/kuzu/pull/3945, that was found by Prashanth (though Chang reported it) on a dataset he had. Even though the dataset surfaces...

### Description I'm writing this to keep track of optimizations and new features we should be adding to Kuzu's GDS component. There is a lot of pieces to this, but...

performance optimization