remove the 1000-row limit for ORM result set

This commit is contained in:
Yang Luo 2019-04-27 16:55:42 +08:00
parent 3086081ec0
commit afb787d49d
1 changed files with 1 additions and 1 deletions

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")