1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 22:50:55 +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() defer rows.Close()
for rows.Next() { for rows.Next() {
var tmp, index sql.NullString var tmp, index sql.NullString
rows.Scan(&tmp, &index, &tmp) rows.Scan(&tmp, &index, &tmp, &tmp, &tmp)
if name == index.String { if name == index.String {
return true return true
} }