1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 18:10:54 +00:00

Fix for IndexExists in SQLite driver, they added the "origin" and "partial" columns to the index_list pragma.

see: https://www.sqlite.org/src/info/2743846cdba572f6
This commit is contained in:
Christoph Pech 2017-03-28 12:38:27 +02:00
parent 323a1c4214
commit 2808a13f07

View File

@ -134,7 +134,7 @@ func (d *dbBaseSqlite) IndexExists(db dbQuerier, table string, name string) bool
defer rows.Close()
for rows.Next() {
var tmp, index sql.NullString
rows.Scan(&tmp, &index, &tmp)
rows.Scan(&tmp, &index, &tmp, &tmp, &tmp)
if name == index.String {
return true
}