mirror of
https://github.com/Syngnat/GoNavi.git
synced 2026-06-23 15:03:51 +08:00
- 后端新增 Trino 数据库实现与 optional driver-agent provider - 前端补齐 catalog.schema 连接配置、URI 解析与能力开关 - SQL 编辑器对 Trino 禁用托管事务并补充前后端测试
13 lines
195 B
Go
13 lines
195 B
Go
//go:build gonavi_trino_driver
|
|
|
|
package main
|
|
|
|
import "GoNavi-Wails/internal/db"
|
|
|
|
func init() {
|
|
agentDriverType = "trino"
|
|
agentDatabaseFactory = func() db.Database {
|
|
return &db.TrinoDB{}
|
|
}
|
|
}
|