sqle
sqle copied to clipboard
MySQL NOT NULL建议规则冲突
版本信息(Version)
v4.2505
问题描述(Describe)
mysql 数据源 v1审核模板 BLOB和TEXT类型的字段不建议设置为NOT NULL 和 建议给xx字段添加NOT NULL约束冲突 预期 BLOB 和 TEXT 字段不应该提示设置NOT NULL
截图或日志(Log)
mysql 数据源 审核 模板v1 create table IF NOT EXISTS test(id BIGINT UNSIGNED primary key auto_increment not null, addr text not null DEFAULT 'aaaa');
text 字段 去掉 not null 后:create table IF NOT EXISTS test(id BIGINT UNSIGNED primary key auto_increment not null, addr text );
如何复现(To Reproduce)
参考 “截图或日志” 部分