diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2017-01-23 19:11:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-23 19:11:57 +0800 |
commit | 907b6f943ce632ee49568237f0d430dedb616f92 (patch) | |
tree | 78ecb616180290c62aede3d319130434e018b843 /vendor/github.com/go-xorm/xorm/engine.go | |
parent | a8048c19f3dba52bbc0db6a0d8cbdfdf3fb6c149 (diff) | |
download | gitea-907b6f943ce632ee49568237f0d430dedb616f92.tar.gz gitea-907b6f943ce632ee49568237f0d430dedb616f92.zip |
update xorm for bugs fix (#728)
Diffstat (limited to 'vendor/github.com/go-xorm/xorm/engine.go')
-rw-r--r-- | vendor/github.com/go-xorm/xorm/engine.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/go-xorm/xorm/engine.go b/vendor/github.com/go-xorm/xorm/engine.go index 9e7b003782..1ee1589c31 100644 --- a/vendor/github.com/go-xorm/xorm/engine.go +++ b/vendor/github.com/go-xorm/xorm/engine.go @@ -359,7 +359,7 @@ func (engine *Engine) DBMetas() ([]*core.Table, error) { if col := table.GetColumn(name); col != nil { col.Indexes[index.Name] = index.Type } else { - return nil, fmt.Errorf("Unknown col %s in indexe %v of table %v, columns %v", name, index.Name, table.Name, table.ColumnsSeq()) + return nil, fmt.Errorf("Unknown col %s in index %v of table %v, columns %v", name, index.Name, table.Name, table.ColumnsSeq()) } } } |