Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow the null default in insert into stmt (apache#1556)
The default value of null is forbidden in insert into stmt while null column has not been mentioned in stmt. This is a bug because the unmentioned column has default value. The values should be inserted successfully although the default value is null. So the column may simply be not assigned default value when the column is not allowed null and the default value of column is null.
- Loading branch information