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

In the [union documentation page](https://docs.kuzudb.com/cypher/data-types/union), there is no mention of how to declare a union literal. There is only use of `union_extract` and `union_tag`.

documentation

I've upgraded to the latest version `0.0.9` and there are a few rough edges with reading parquet from Python. ## Problem scenario If I have a parquet file with two...

bug
testing
high-priority

Steps to reproduce ```py import kuzu import pandas as pd import random db = kuzu.Database("tmpdatabase") conn = kuzu.Connection(db) df = pd.DataFrame({'col1': [[random.randint(-(1

bug

We should complete openCypher regression test (aka, Technology Compatibility Kit (TCK)) in order to quantify how close we are in terms of feature complete towards open cypher. ## Clauses -...

This issue keeps track of features that are either missing or implemented with a different semantic compared to Neo4j Cypher. The general goal is to make Kùzu feature complete towards...

`SERIAL` is introduce in #1493 but not completely supported. The following are what is missing currently: - [x] RETURN SERIAL values. Add SERIAL to Value and FlatTupleIterator. - [ ]...

Consider the following case: We first start a write transition and then delete all rels from a node. When reading the adjList of that node, the initListReadingState() function will init...

bug

Current bulk insertion requires scan operator outputs an offset which is as internal ID. This design has the following problems - When the scan operator scans from a subquery, we...

performance optimization
high-priority

This query returns incorrect result: ``` kuzu> RETURN CASE NULL WHEN NULL THEN "Null value" ELSE "Not null value" END; ----------------------------------------------------------- | CASE WHEN EQUALS(,) THEN Null value ELSE Not...

bug