fix bug about index.Cols
This commit is contained in:
parent
6485adb722
commit
82f124afec
|
@ -286,13 +286,7 @@ func (engine *Engine) loadTableInfo(table *schemas.Table) error {
|
||||||
var seq int
|
var seq int
|
||||||
for _, index := range indexes {
|
for _, index := range indexes {
|
||||||
for _, name := range index.Cols {
|
for _, name := range index.Cols {
|
||||||
parts := strings.Split(name, " ")
|
if col := table.GetColumn(name); col != nil {
|
||||||
if len(parts) > 1 {
|
|
||||||
if parts[1] == "DESC" {
|
|
||||||
seq = 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if col := table.GetColumn(parts[0]); col != nil {
|
|
||||||
col.Indexes[index.Name] = index.Type
|
col.Indexes[index.Name] = index.Type
|
||||||
} else {
|
} else {
|
||||||
return fmt.Errorf("Unknown col %s seq %d, in index %v of table %v, columns %v", name, seq, index.Name, table.Name, table.ColumnsSeq())
|
return fmt.Errorf("Unknown col %s seq %d, in index %v of table %v, columns %v", name, seq, index.Name, table.Name, table.ColumnsSeq())
|
||||||
|
|
Loading…
Reference in New Issue