feat(gaussdb): 新增 GaussDB 数据库连接支持

Refs #497
This commit is contained in:
Syngnat
2026-06-13 19:34:52 +08:00
parent f3dfffb8d1
commit d2f68acae8
70 changed files with 717 additions and 73 deletions

View File

@@ -37,8 +37,10 @@ describe('sidebarCoreUtils', () => {
it('normalizes driver aliases used by sidebar metadata loaders', () => {
expect(normalizeDriverType('postgresql')).toBe('postgres');
expect(normalizeDriverType('open-gauss')).toBe('opengauss');
expect(normalizeDriverType('gauss-db')).toBe('gaussdb');
expect(normalizeDriverType('InterSystemsIRIS')).toBe('iris');
expect(isPostgresSchemaDialect('kingbase')).toBe(true);
expect(isPostgresSchemaDialect('gauss-db')).toBe(true);
});
it('resolves draggable object labels by object kind', () => {