mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 16:50:54 +00:00
Merge pull request #3333 from akhedrane/patch-1
Return error when wrong filtering field
This commit is contained in:
commit
8134a89e81
@ -928,7 +928,7 @@ func (d *dbBase) ReadBatch(q dbQuerier, qs *querySet, mi *modelInfo, cond *Condi
|
|||||||
maps[fi.column] = true
|
maps[fi.column] = true
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
panic(fmt.Errorf("wrong field/column name `%s`", col))
|
return -1, fmt.Errorf("wrong field/column name `%s`", col)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if hasRel {
|
if hasRel {
|
||||||
|
Loading…
Reference in New Issue
Block a user