schemadoc: print table indexes (#7012)

pull/7015/head
Joe Chen 2022-06-05 18:08:59 +08:00 committed by GitHub
parent a328e7ccc4
commit 4cc3000b07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 47 additions and 6 deletions

View File

@ -9,6 +9,8 @@
Mode | mode | BIGINT NOT NULL | BIGINT NOT NULL | INTEGER NOT NULL
Primary keys: id
Indexes:
"access_user_repo_unique" UNIQUE (user_id, repo_id)
```
# Table "access_token"
@ -25,6 +27,8 @@ Primary keys: id
UpdatedUnix | updated_unix | BIGINT | BIGINT | INTEGER
Primary keys: id
Indexes:
"idx_access_token_user_id" (uid)
```
# Table "lfs_object"

View File

@ -1,8 +1,10 @@
package main
import (
"fmt"
"log"
"os"
"sort"
"strings"
"github.com/olekukonko/tablewriter"
@ -77,6 +79,28 @@ func main() {
_, _ = w.WriteString(strings.Join(ti.PrimaryKeys, ", "))
_, _ = w.WriteString("\n")
if len(ti.Indexes) > 0 {
_, _ = w.WriteString("Indexes: \n")
for _, index := range ti.Indexes {
_, _ = w.WriteString(fmt.Sprintf("\t%q", index.Name))
if index.Class != "" {
_, _ = w.WriteString(fmt.Sprintf(" %s", index.Class))
}
if index.Type != "" {
_, _ = w.WriteString(fmt.Sprintf(", %s", index.Type))
}
if len(index.Fields) > 0 {
fields := make([]string, len(index.Fields))
for i := range index.Fields {
fields[i] = index.Fields[i].DBName
}
_, _ = w.WriteString(fmt.Sprintf(" (%s)", strings.Join(fields, ", ")))
}
_, _ = w.WriteString("\n")
}
}
_, _ = w.WriteString("```\n\n")
}
}
@ -91,17 +115,21 @@ type tableInfo struct {
Name string
Fields []*tableField
PrimaryKeys []string
Indexes []schema.Index
}
// This function is derived from gorm.io/gorm/migrator/migrator.go:Migrator.CreateTable.
func generate(dialector gorm.Dialector) ([]*tableInfo, error) {
conn, err := gorm.Open(dialector, &gorm.Config{
NamingStrategy: schema.NamingStrategy{
SingularTable: true,
conn, err := gorm.Open(dialector,
&gorm.Config{
SkipDefaultTransaction: true,
NamingStrategy: schema.NamingStrategy{
SingularTable: true,
},
DryRun: true,
DisableAutomaticPing: true,
},
DryRun: true,
DisableAutomaticPing: true,
})
)
if err != nil {
return nil, errors.Wrap(err, "open database")
}
@ -133,10 +161,19 @@ func generate(dialector gorm.Dialector) ([]*tableInfo, error) {
}
}
var indexes []schema.Index
for _, index := range stmt.Schema.ParseIndexes() {
indexes = append(indexes, index)
}
sort.Slice(indexes, func(i, j int) bool {
return indexes[i].Name < indexes[j].Name
})
tableInfos = append(tableInfos, &tableInfo{
Name: stmt.Table,
Fields: fields,
PrimaryKeys: primaryKeys,
Indexes: indexes,
})
return nil
})