1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-01 04:13:27 +00:00

Merge pull request #3625 from hsluoyz/develop

remove the 1000-row limit for ORM result set
This commit is contained in:
astaxie 2019-04-27 23:27:58 +08:00 committed by GitHub
commit 56afa5c2bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,7 +72,7 @@ const (
var (
Debug = false
DebugLog = NewLog(os.Stdout)
DefaultRowsLimit = 1000
DefaultRowsLimit = -1
DefaultRelsDepth = 2
DefaultTimeLoc = time.Local
ErrTxHasBegan = errors.New("<Ormer.Begin> transaction already begin")