mirror of
https://gitcode.com/gitea/gitea.git
synced 2025-10-13 11:15:03 +08:00
Detect migrating batch size (#7353)
* Make migrating batch size as configurable * detect different table batch insert size and remove config item * remove unrelated changes
This commit is contained in:

committed by
techknowlogick

parent
ef57fe4ae3
commit
337d6915ff
@ -368,3 +368,9 @@ func DumpDatabase(filePath string, dbType string) error {
|
||||
}
|
||||
return x.DumpTablesToFile(tbs, filePath)
|
||||
}
|
||||
|
||||
// MaxBatchInsertSize returns the table's max batch insert size
|
||||
func MaxBatchInsertSize(bean interface{}) int {
|
||||
t := x.TableInfo(bean)
|
||||
return 999 / len(t.ColumnsSeq())
|
||||
}
|
||||
|
Reference in New Issue
Block a user