greptimedb icon indicating copy to clipboard operation
greptimedb copied to clipboard

Supports default value when inserting data.

Open killme2008 opened this issue 3 years ago • 0 comments

What type of enhancement is this?

API improvement

What does the enhancement do?

For example:

CREATE TABLE integers(i BIGINT, time index(i));

INSERT INTO integers values (default);

It should insert the default value null into the table integers.

And if the column has a default constraint, it should use the default value generated by the constraint too.

Implementation challenges

No response

killme2008 avatar Dec 16 '22 09:12 killme2008