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

Adding question from Discord for context: > Is there a way to share the same Kuzu database among multiple processes. At the moment this seems to be impossible: if I...

bug

These type combinations in arrow reader (```scanArrowArray```) are missing test coverage: - ```MonthInterval``` - ```DayTimeInterval``` - ```MonthDayNanoInterval``` - ```BLOBView``` - ```ListView``` - ```DenseUnion``` - ```SparseUnion``` - ```RunEndEncoded``` - ```DictionaryEncoded (int8_t,...

testing

Turn on TSAN reports following errors. To reproduce, change `DEFAULT_VM_REGION_MAX_SIZE` to a smaller size (4GB), and turn on `TSAN=1`. Most tests should be able to trigger this during copy. ```...

bug

For example: ```python db_path = tmp_path / "test_database_close.kuzu" db1 = kuzu.Database(database_path = db_path, read_only = False) assert not db1.is_closed assert db1._database is not None db2 = kuzu.Database(database_path = db_path, read_only...

Following up #3283, the rust read only database test is failing to flush the WAL on windows with an access denied error, presumably since the file is open read-only. The...

By changing line 130 of create_tinysnb.test `MATCH (a:person) WHERE a.ID > 8 RETURN a.ID, a.workedHours,a.usedNames` to `MATCH (a:person) WHERE a.ID > -1 RETURN a.ID, a.workedHours,a.usedNames` you can reliably cause a...

bug

Copy rel currently assumes that the first column and second column must be source/destination ID column respectively. We should consider remove this restriction and allow user to specify the source/destionation...

usability

In Python, we are able to use the `get_as_arrow()` and `get_as_pl()` methods to consume a `QueryResult` and transform it to an Arrow table or Polars DataFrame. Because we can already...

feature

### Discussed in https://github.com/kuzudb/kuzu/discussions/3125 Originally posted by **sapalli2989** March 23, 2024 It would be great, if we could declare within `CREATE`/DDL, that ids of a `UUID` column are to be...

feature