1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-11 08:40:39 +00:00

Return error when wrong filtering field

When end user put wrong filtering field ORM should return error instead of Panic()
so developers can handle this error.
This commit is contained in:
Atallah khedrane
2018-09-23 12:18:15 +02:00
committed by GitHub
parent 053a075344
commit 0e4d954fa7

View File

@ -928,7 +928,7 @@ func (d *dbBase) ReadBatch(q dbQuerier, qs *querySet, mi *modelInfo, cond *Condi
maps[fi.column] = true
}
} else {
panic(fmt.Errorf("wrong field/column name `%s`", col))
return -1, fmt.Errorf("wrong field/column name `%s`", col)
}
}
if hasRel {