🐛 fix(frontend/ci): 修复对象修改卡顿与 Windows ARM 驱动校验失败

- QueryEditor 为对象修改标签增加 object-edit 轻量模式,跳过重型元数据抓取和对象装饰扫描
- DefinitionViewer 与 TriggerViewer 打开的对象修改标签统一透传 queryMode,避免重新进入普通查询链路
- TriggerViewer 补全 MySQL/Oracle 类触发器 DDL 重建逻辑,修复对象修改打开语法不完整
- 补充对象修改与触发器 DDL 回归测试,覆盖轻量模式和元数据补全场景
- verify-driver-agent-revisions 脚本改为跨架构校验,避免在 x64 runner 直接执行 windows/arm64 二进制
- 新增 Windows ARM CI 校验追踪文档,保留架构校验与 host-native probe 证据
This commit is contained in:
Syngnat
2026-06-05 10:34:18 +08:00
parent 3964ecbe88
commit 6742495c6f
8 changed files with 362 additions and 11 deletions

View File

@@ -412,6 +412,7 @@ export interface TabData {
dbName?: string;
tableName?: string;
query?: string;
queryMode?: "standard" | "object-edit";
filePath?: string;
initialTab?: string;
readOnly?: boolean;