Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support NULL on blob and char columns #718

Closed
unconsolable opened this issue Oct 23, 2022 · 1 comment · Fixed by #724
Closed

support NULL on blob and char columns #718

unconsolable opened this issue Oct 23, 2022 · 1 comment · Fixed by #724
Assignees

Comments

@unconsolable
Copy link
Member

Since #712 is merged, may NULL on blob and char columns can be supported.

Currently, NULL on these columns will become default value.

> create table test (e varchar(10));
created
in 0.031s
> insert into test values (NULL);
1 rows inserted
in 0.035s
> select * from test;
+---+
| e |
+---+
|   |
+---+
in 0.003s
@unconsolable
Copy link
Member Author

I'm going to try to work on it. If anyone is working on it now, please let me know. If there are not any progress for a long time (e.g., two months), feel free to take over.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant