2021-05-08 18:00:33 +08:00
|
|
|
|
package application
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
2023-11-07 21:05:21 +08:00
|
|
|
|
"context"
|
2024-03-26 21:46:03 +08:00
|
|
|
|
"fmt"
|
2023-12-05 23:03:51 +08:00
|
|
|
|
"mayfly-go/internal/common/consts"
|
2023-10-27 17:41:45 +08:00
|
|
|
|
"mayfly-go/internal/db/dbm"
|
2024-01-12 13:15:30 +08:00
|
|
|
|
"mayfly-go/internal/db/dbm/dbi"
|
2022-09-09 18:26:08 +08:00
|
|
|
|
"mayfly-go/internal/db/domain/entity"
|
|
|
|
|
|
"mayfly-go/internal/db/domain/repository"
|
2023-12-05 23:03:51 +08:00
|
|
|
|
tagapp "mayfly-go/internal/tag/application"
|
2024-04-09 12:55:51 +08:00
|
|
|
|
tagentity "mayfly-go/internal/tag/domain/entity"
|
2023-10-26 17:15:49 +08:00
|
|
|
|
"mayfly-go/pkg/base"
|
2024-03-26 21:46:03 +08:00
|
|
|
|
"mayfly-go/pkg/biz"
|
2023-10-26 17:15:49 +08:00
|
|
|
|
"mayfly-go/pkg/errorx"
|
2022-06-02 17:41:11 +08:00
|
|
|
|
"mayfly-go/pkg/model"
|
2023-07-21 17:07:04 +08:00
|
|
|
|
"mayfly-go/pkg/utils/collx"
|
2024-03-26 21:46:03 +08:00
|
|
|
|
"sort"
|
2021-07-28 18:03:19 +08:00
|
|
|
|
"strings"
|
2024-03-26 21:46:03 +08:00
|
|
|
|
"time"
|
2021-05-08 18:00:33 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
2021-07-28 18:03:19 +08:00
|
|
|
|
type Db interface {
|
2023-10-26 17:15:49 +08:00
|
|
|
|
base.App[*entity.Db]
|
|
|
|
|
|
|
2022-06-16 15:55:18 +08:00
|
|
|
|
// 分页获取
|
2023-10-26 17:15:49 +08:00
|
|
|
|
GetPageList(condition *entity.DbQuery, pageParam *model.PageParam, toEntity any, orderBy ...string) (*model.PageResult[any], error)
|
2021-05-08 18:00:33 +08:00
|
|
|
|
|
2022-10-26 20:49:29 +08:00
|
|
|
|
Count(condition *entity.DbQuery) int64
|
2021-09-11 14:04:09 +08:00
|
|
|
|
|
2024-01-07 21:46:25 +08:00
|
|
|
|
SaveDb(ctx context.Context, entity *entity.Db, tagIds ...uint64) error
|
2021-05-08 18:00:33 +08:00
|
|
|
|
|
2021-07-28 18:03:19 +08:00
|
|
|
|
// 删除数据库信息
|
2023-11-07 21:05:21 +08:00
|
|
|
|
Delete(ctx context.Context, id uint64) error
|
2021-07-28 18:03:19 +08:00
|
|
|
|
|
|
|
|
|
|
// 获取数据库连接实例
|
2023-10-27 17:41:45 +08:00
|
|
|
|
// @param id 数据库id
|
2023-12-20 17:29:16 +08:00
|
|
|
|
//
|
|
|
|
|
|
// @param dbName 数据库名
|
2024-01-12 13:15:30 +08:00
|
|
|
|
GetDbConn(dbId uint64, dbName string) (*dbi.DbConn, error)
|
2023-12-20 17:29:16 +08:00
|
|
|
|
|
|
|
|
|
|
// 根据数据库实例id获取连接,随机返回该instanceId下已连接的conn,若不存在则是使用该instanceId关联的db进行连接并返回。
|
2024-01-12 13:15:30 +08:00
|
|
|
|
GetDbConnByInstanceId(instanceId uint64) (*dbi.DbConn, error)
|
2024-03-26 21:46:03 +08:00
|
|
|
|
|
|
|
|
|
|
// DumpDb dumpDb
|
|
|
|
|
|
DumpDb(ctx context.Context, reqParam *DumpDbReq) error
|
2021-05-08 18:00:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-07-28 18:03:19 +08:00
|
|
|
|
type dbAppImpl struct {
|
2023-10-26 17:15:49 +08:00
|
|
|
|
base.AppImpl[*entity.Db, repository.Db]
|
|
|
|
|
|
|
2024-01-23 19:30:28 +08:00
|
|
|
|
dbSqlRepo repository.DbSql `inject:"DbSqlRepo"`
|
|
|
|
|
|
dbInstanceApp Instance `inject:"DbInstanceApp"`
|
|
|
|
|
|
tagApp tagapp.TagTree `inject:"TagTreeApp"`
|
2024-01-21 22:52:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 注入DbRepo
|
|
|
|
|
|
func (d *dbAppImpl) InjectDbRepo(repo repository.Db) {
|
|
|
|
|
|
d.Repo = repo
|
2021-05-08 18:00:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 分页获取数据库信息列表
|
2023-10-26 17:15:49 +08:00
|
|
|
|
func (d *dbAppImpl) GetPageList(condition *entity.DbQuery, pageParam *model.PageParam, toEntity any, orderBy ...string) (*model.PageResult[any], error) {
|
|
|
|
|
|
return d.GetRepo().GetDbList(condition, pageParam, toEntity, orderBy...)
|
2021-05-08 18:00:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2022-10-26 20:49:29 +08:00
|
|
|
|
func (d *dbAppImpl) Count(condition *entity.DbQuery) int64 {
|
2023-10-26 17:15:49 +08:00
|
|
|
|
return d.GetRepo().Count(condition)
|
2021-09-11 14:04:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-01-07 21:46:25 +08:00
|
|
|
|
func (d *dbAppImpl) SaveDb(ctx context.Context, dbEntity *entity.Db, tagIds ...uint64) error {
|
2023-09-27 17:19:58 +08:00
|
|
|
|
// 查找是否存在
|
|
|
|
|
|
oldDb := &entity.Db{Name: dbEntity.Name, InstanceId: dbEntity.InstanceId}
|
2023-10-26 17:15:49 +08:00
|
|
|
|
err := d.GetBy(oldDb)
|
2021-07-28 18:03:19 +08:00
|
|
|
|
|
|
|
|
|
|
if dbEntity.Id == 0 {
|
2023-10-26 17:15:49 +08:00
|
|
|
|
if err == nil {
|
|
|
|
|
|
return errorx.NewBiz("该实例下数据库名已存在")
|
|
|
|
|
|
}
|
2023-12-05 23:03:51 +08:00
|
|
|
|
|
2024-04-06 18:19:17 +08:00
|
|
|
|
if d.CountByCond(&entity.Db{Code: dbEntity.Code}) > 0 {
|
|
|
|
|
|
return errorx.NewBiz("该编码已存在")
|
|
|
|
|
|
}
|
2023-12-05 23:03:51 +08:00
|
|
|
|
|
|
|
|
|
|
return d.Tx(ctx, func(ctx context.Context) error {
|
|
|
|
|
|
return d.Insert(ctx, dbEntity)
|
|
|
|
|
|
}, func(ctx context.Context) error {
|
2024-04-12 13:24:20 +08:00
|
|
|
|
return d.tagApp.SaveResourceTag(ctx, &tagapp.SaveResourceTagParam{
|
|
|
|
|
|
Code: dbEntity.Code,
|
|
|
|
|
|
Type: tagentity.TagTypeDb,
|
|
|
|
|
|
ParentTagIds: tagIds,
|
2024-04-06 18:19:17 +08:00
|
|
|
|
})
|
2023-12-05 23:03:51 +08:00
|
|
|
|
})
|
2022-05-08 14:10:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 如果存在该库,则校验修改的库是否为该库
|
2023-10-26 17:15:49 +08:00
|
|
|
|
if err == nil && oldDb.Id != dbEntity.Id {
|
|
|
|
|
|
return errorx.NewBiz("该实例下数据库名已存在")
|
2022-05-08 14:10:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dbId := dbEntity.Id
|
2023-10-26 17:15:49 +08:00
|
|
|
|
old, err := d.GetById(new(entity.Db), dbId)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return errorx.NewBiz("该数据库不存在")
|
|
|
|
|
|
}
|
2022-05-08 14:10:57 +08:00
|
|
|
|
|
2023-09-27 17:19:58 +08:00
|
|
|
|
oldDbs := strings.Split(old.Database, " ")
|
|
|
|
|
|
newDbs := strings.Split(dbEntity.Database, " ")
|
2022-05-08 14:10:57 +08:00
|
|
|
|
// 比较新旧数据库列表,需要将移除的数据库相关联的信息删除
|
2024-01-13 13:38:53 +08:00
|
|
|
|
_, delDb, _ := collx.ArrayCompare(newDbs, oldDbs)
|
2023-09-27 17:19:58 +08:00
|
|
|
|
|
2024-01-23 09:27:05 +08:00
|
|
|
|
// 先简单关闭可能存在的旧库连接(可能改了关联标签导致DbConn.Info.TagPath与修改后的标签不一致、导致操作权限校验出错)
|
|
|
|
|
|
for _, v := range oldDbs {
|
2023-09-27 17:19:58 +08:00
|
|
|
|
// 关闭数据库连接
|
2023-10-27 17:41:45 +08:00
|
|
|
|
dbm.CloseDb(dbEntity.Id, v)
|
2024-01-23 09:27:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for _, v := range delDb {
|
2022-05-08 14:10:57 +08:00
|
|
|
|
// 删除该库关联的所有sql记录
|
2024-01-23 19:30:28 +08:00
|
|
|
|
d.dbSqlRepo.DeleteByCond(ctx, &entity.DbSql{DbId: dbId, Db: v})
|
2021-07-28 18:03:19 +08:00
|
|
|
|
}
|
2022-05-08 14:10:57 +08:00
|
|
|
|
|
2024-04-06 18:19:17 +08:00
|
|
|
|
// 防止误传修改
|
|
|
|
|
|
dbEntity.Code = ""
|
2023-12-05 23:03:51 +08:00
|
|
|
|
return d.Tx(ctx, func(ctx context.Context) error {
|
|
|
|
|
|
return d.UpdateById(ctx, dbEntity)
|
|
|
|
|
|
}, func(ctx context.Context) error {
|
2024-04-12 13:24:20 +08:00
|
|
|
|
return d.tagApp.SaveResourceTag(ctx, &tagapp.SaveResourceTagParam{
|
|
|
|
|
|
Code: old.Code,
|
|
|
|
|
|
Type: tagentity.TagTypeDb,
|
|
|
|
|
|
ParentTagIds: tagIds,
|
2024-04-06 18:19:17 +08:00
|
|
|
|
})
|
2023-12-05 23:03:51 +08:00
|
|
|
|
})
|
2021-07-28 18:03:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-11-07 21:05:21 +08:00
|
|
|
|
func (d *dbAppImpl) Delete(ctx context.Context, id uint64) error {
|
2023-10-26 17:15:49 +08:00
|
|
|
|
db, err := d.GetById(new(entity.Db), id)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return errorx.NewBiz("该数据库不存在")
|
|
|
|
|
|
}
|
2022-05-08 14:10:57 +08:00
|
|
|
|
dbs := strings.Split(db.Database, " ")
|
|
|
|
|
|
for _, v := range dbs {
|
|
|
|
|
|
// 关闭连接
|
2023-10-27 17:41:45 +08:00
|
|
|
|
dbm.CloseDb(id, v)
|
2022-05-08 14:10:57 +08:00
|
|
|
|
}
|
2023-12-13 14:01:13 +08:00
|
|
|
|
|
|
|
|
|
|
return d.Tx(ctx,
|
|
|
|
|
|
func(ctx context.Context) error {
|
|
|
|
|
|
return d.DeleteById(ctx, id)
|
|
|
|
|
|
},
|
|
|
|
|
|
func(ctx context.Context) error {
|
|
|
|
|
|
// 删除该库下用户保存的所有sql信息
|
2024-01-23 19:30:28 +08:00
|
|
|
|
return d.dbSqlRepo.DeleteByCond(ctx, &entity.DbSql{DbId: id})
|
2023-12-13 14:01:13 +08:00
|
|
|
|
}, func(ctx context.Context) error {
|
2024-04-12 13:24:20 +08:00
|
|
|
|
return d.tagApp.SaveResourceTag(ctx, &tagapp.SaveResourceTagParam{
|
|
|
|
|
|
Code: db.Code,
|
|
|
|
|
|
Type: tagentity.TagTypeDb,
|
2024-04-06 18:19:17 +08:00
|
|
|
|
})
|
2023-12-13 14:01:13 +08:00
|
|
|
|
})
|
2021-07-28 18:03:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-01-12 13:15:30 +08:00
|
|
|
|
func (d *dbAppImpl) GetDbConn(dbId uint64, dbName string) (*dbi.DbConn, error) {
|
|
|
|
|
|
return dbm.GetDbConn(dbId, dbName, func() (*dbi.DbInfo, error) {
|
2023-10-27 17:41:45 +08:00
|
|
|
|
db, err := d.GetById(new(entity.Db), dbId)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return nil, errorx.NewBiz("数据库信息不存在")
|
2021-07-28 18:03:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-01-23 19:30:28 +08:00
|
|
|
|
instance, err := d.dbInstanceApp.GetById(new(entity.DbInstance), db.InstanceId)
|
2023-10-27 17:41:45 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
|
return nil, errorx.NewBiz("数据库实例不存在")
|
2022-07-23 16:41:04 +08:00
|
|
|
|
}
|
2023-11-12 20:14:44 +08:00
|
|
|
|
|
2024-04-12 13:24:20 +08:00
|
|
|
|
di, err := d.dbInstanceApp.ToDbInfo(instance, db.AuthCertName, dbName)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return nil, err
|
2024-01-05 08:55:34 +08:00
|
|
|
|
}
|
2024-04-12 13:24:20 +08:00
|
|
|
|
di.TagPath = d.tagApp.ListTagPathByTypeAndCode(consts.ResourceTypeDb, db.Code)
|
|
|
|
|
|
di.Id = db.Id
|
|
|
|
|
|
|
2024-02-29 22:12:50 +08:00
|
|
|
|
if db.FlowProcdefKey != nil {
|
|
|
|
|
|
di.FlowProcdefKey = *db.FlowProcdefKey
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-03-15 13:31:53 +08:00
|
|
|
|
checkDb := di.GetDatabase()
|
|
|
|
|
|
if !strings.Contains(" "+db.Database+" ", " "+checkDb+" ") {
|
|
|
|
|
|
return nil, errorx.NewBiz("未配置数据库【%s】的操作权限", dbName)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-02-29 22:12:50 +08:00
|
|
|
|
return di, nil
|
2022-07-23 16:41:04 +08:00
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-01-12 13:15:30 +08:00
|
|
|
|
func (d *dbAppImpl) GetDbConnByInstanceId(instanceId uint64) (*dbi.DbConn, error) {
|
2023-12-20 17:29:16 +08:00
|
|
|
|
conn := dbm.GetDbConnByInstanceId(instanceId)
|
|
|
|
|
|
if conn != nil {
|
|
|
|
|
|
return conn, nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var dbs []*entity.Db
|
2024-01-05 17:23:29 +08:00
|
|
|
|
if err := d.ListByCond(&entity.Db{InstanceId: instanceId}, &dbs, "id", "database"); err != nil {
|
2024-01-05 22:16:38 +08:00
|
|
|
|
return nil, errorx.NewBiz("获取数据库列表失败")
|
2024-01-05 17:23:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
if len(dbs) == 0 {
|
2024-03-15 13:31:53 +08:00
|
|
|
|
return nil, errorx.NewBiz("实例[%d]未配置数据库, 请先进行配置", instanceId)
|
2023-12-20 17:29:16 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 使用该实例关联的已配置数据库中的第一个库进行连接并返回
|
|
|
|
|
|
firstDb := dbs[0]
|
|
|
|
|
|
return d.GetDbConn(firstDb.Id, strings.Split(firstDb.Database, " ")[0])
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-03-26 21:46:03 +08:00
|
|
|
|
func (d *dbAppImpl) DumpDb(ctx context.Context, reqParam *DumpDbReq) error {
|
|
|
|
|
|
writer := newGzipWriter(reqParam.Writer)
|
|
|
|
|
|
defer writer.Close()
|
|
|
|
|
|
dbId := reqParam.DbId
|
|
|
|
|
|
dbName := reqParam.DbName
|
|
|
|
|
|
tables := reqParam.Tables
|
|
|
|
|
|
|
|
|
|
|
|
dbConn, err := d.GetDbConn(dbId, dbName)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return err
|
|
|
|
|
|
}
|
|
|
|
|
|
writer.WriteString("\n-- ----------------------------")
|
|
|
|
|
|
writer.WriteString("\n-- 导出平台: mayfly-go")
|
|
|
|
|
|
writer.WriteString(fmt.Sprintf("\n-- 导出时间: %s ", time.Now().Format("2006-01-02 15:04:05")))
|
|
|
|
|
|
writer.WriteString(fmt.Sprintf("\n-- 导出数据库: %s ", dbName))
|
|
|
|
|
|
writer.WriteString("\n-- ----------------------------\n\n")
|
|
|
|
|
|
|
|
|
|
|
|
dbMeta := dbConn.GetMetaData()
|
|
|
|
|
|
if len(tables) == 0 {
|
|
|
|
|
|
ti, err := dbMeta.GetTables()
|
|
|
|
|
|
biz.ErrIsNil(err)
|
|
|
|
|
|
tables = make([]string, len(ti))
|
|
|
|
|
|
for i, table := range ti {
|
|
|
|
|
|
tables[i] = table.TableName
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-03-29 21:40:26 +08:00
|
|
|
|
if len(tables) == 0 {
|
|
|
|
|
|
return errorx.NewBiz("不存在可导出的表")
|
|
|
|
|
|
}
|
2024-03-26 21:46:03 +08:00
|
|
|
|
|
|
|
|
|
|
// 查询列信息,后面生成建表ddl和insert都需要列信息
|
|
|
|
|
|
columns, err := dbMeta.GetColumns(tables...)
|
|
|
|
|
|
biz.ErrIsNil(err)
|
|
|
|
|
|
|
|
|
|
|
|
// 以表名分组,存放每个表的列信息
|
|
|
|
|
|
columnMap := make(map[string][]dbi.Column)
|
|
|
|
|
|
for _, column := range columns {
|
|
|
|
|
|
columnMap[column.TableName] = append(columnMap[column.TableName], column)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 按表名排序
|
|
|
|
|
|
sort.Strings(tables)
|
|
|
|
|
|
|
|
|
|
|
|
quoteSchema := dbMeta.QuoteIdentifier(dbConn.Info.CurrentSchema())
|
|
|
|
|
|
dumpHelper := dbMeta.GetDumpHelper()
|
|
|
|
|
|
dataHelper := dbMeta.GetDataHelper()
|
|
|
|
|
|
|
|
|
|
|
|
// 遍历获取每个表的信息
|
|
|
|
|
|
for _, tableName := range tables {
|
|
|
|
|
|
quoteTableName := dbMeta.QuoteIdentifier(tableName)
|
|
|
|
|
|
|
|
|
|
|
|
writer.TryFlush()
|
|
|
|
|
|
// 查询表信息,主要是为了查询表注释
|
|
|
|
|
|
tbs, err := dbMeta.GetTables(tableName)
|
|
|
|
|
|
biz.ErrIsNil(err)
|
|
|
|
|
|
if err != nil || tbs == nil || len(tbs) <= 0 {
|
|
|
|
|
|
panic(errorx.NewBiz(fmt.Sprintf("获取表信息失败:%s", tableName)))
|
|
|
|
|
|
}
|
|
|
|
|
|
tabInfo := dbi.Table{
|
|
|
|
|
|
TableName: tableName,
|
|
|
|
|
|
TableComment: tbs[0].TableComment,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 生成表结构信息
|
|
|
|
|
|
if reqParam.DumpDDL {
|
|
|
|
|
|
writer.WriteString(fmt.Sprintf("\n-- ----------------------------\n-- 表结构: %s \n-- ----------------------------\n", tableName))
|
|
|
|
|
|
tbDdlArr := dbMeta.GenerateTableDDL(columnMap[tableName], tabInfo, true)
|
|
|
|
|
|
for _, ddl := range tbDdlArr {
|
|
|
|
|
|
writer.WriteString(ddl + ";\n")
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 生成insert sql,数据在索引前,加速insert
|
|
|
|
|
|
if reqParam.DumpData {
|
|
|
|
|
|
writer.WriteString(fmt.Sprintf("\n-- ----------------------------\n-- 表记录: %s \n-- ----------------------------\n", tableName))
|
|
|
|
|
|
|
|
|
|
|
|
dumpHelper.BeforeInsert(writer, quoteTableName)
|
|
|
|
|
|
// 获取列信息
|
|
|
|
|
|
quoteColNames := make([]string, 0)
|
|
|
|
|
|
for _, col := range columnMap[tableName] {
|
|
|
|
|
|
quoteColNames = append(quoteColNames, dbMeta.QuoteIdentifier(col.ColumnName))
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
_ = dbConn.WalkTableRows(ctx, quoteTableName, func(row map[string]any, _ []*dbi.QueryColumn) error {
|
|
|
|
|
|
rowValues := make([]string, len(columnMap[tableName]))
|
|
|
|
|
|
for i, col := range columnMap[tableName] {
|
|
|
|
|
|
rowValues[i] = dataHelper.WrapValue(row[col.ColumnName], dataHelper.GetDataType(string(col.DataType)))
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
beforeInsert := dumpHelper.BeforeInsertSql(quoteSchema, quoteTableName)
|
|
|
|
|
|
insertSQL := fmt.Sprintf("%s INSERT INTO %s (%s) values(%s)", beforeInsert, quoteTableName, strings.Join(quoteColNames, ", "), strings.Join(rowValues, ", "))
|
|
|
|
|
|
writer.WriteString(insertSQL + ";\n")
|
|
|
|
|
|
return nil
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
dumpHelper.AfterInsert(writer, tableName, columnMap[tableName])
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
indexs, err := dbMeta.GetTableIndex(tableName)
|
|
|
|
|
|
biz.ErrIsNil(err)
|
|
|
|
|
|
|
2024-03-27 08:22:26 +08:00
|
|
|
|
if len(indexs) > 0 {
|
2024-03-26 21:46:03 +08:00
|
|
|
|
// 最后添加索引
|
|
|
|
|
|
writer.WriteString(fmt.Sprintf("\n-- ----------------------------\n-- 表索引: %s \n-- ----------------------------\n", tableName))
|
2024-03-27 08:22:26 +08:00
|
|
|
|
sqlArr := dbMeta.GenerateIndexDDL(indexs, tabInfo)
|
2024-03-26 21:46:03 +08:00
|
|
|
|
for _, sqlStr := range sqlArr {
|
|
|
|
|
|
writer.WriteString(sqlStr + ";\n")
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|