kuzu icon indicating copy to clipboard operation
kuzu copied to clipboard

Allow NOT NULL constraint

Open prrao87 opened this issue 9 months ago • 0 comments

We currently perform primary key constraint checks, but it would be useful to have arbitrary properties subject to a NOT NULL constraint (similar to DuckDB or Postgres).

Example usage:

CREATE NODE TABLE Person(
    id UINT64,
    name STRING NOT NULL,
    birthDate DATE NOT NULL,
    PRIMARY KEY(id)
)

prrao87 avatar May 17 '24 17:05 prrao87