-
Notifications
You must be signed in to change notification settings - Fork 212
Open
Description
版本信息(Version)
4.2512.0
问题描述(Describe)
字段超长的SQL没有被规则识别,导致上线失败
截图或日志(Log)
如何复现(To Reproduce)
-- 创建测试表
CREATE TABLE test_table (
id INT PRIMARY KEY AUTO_INCREMENT,
name VARCHAR(5) NOT NULL
);
-- 插入第一条正常数据
INSERT INTO test_table (name) VALUES ('Alice');
-- 'Alice' 长度 = 5,刚好
-- 插入第二条超长数据
INSERT INTO test_table (name) VALUES ('Alexander');
问题原因
没有对应的规则
解决方案
变更影响面
受影响的模块或功能
外部引用的潜在问题或风险
版本兼容性
测试建议
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working