diff --git a/br/pkg/task/restore.go b/br/pkg/task/restore.go index b711fcfd7fe79..65b7c7c2520b7 100644 --- a/br/pkg/task/restore.go +++ b/br/pkg/task/restore.go @@ -913,6 +913,10 @@ func enableTiDBConfig() func() { // when upstream and downstream both set this value greater than default(3072) conf.MaxIndexLength = config.DefMaxOfMaxIndexLength log.Warn("set max-index-length to max(3072*4) to skip check index length in DDL") + conf.IndexLimit = config.DefMaxOfIndexLimit + log.Warn("set index-limit to max(64*8) to skip check index count in DDL") + conf.TableColumnCountLimit = config.DefMaxOfTableColumnCountLimit + log.Warn("set table-column-count to max(4096) to skip check column count in DDL") }) return restoreConfig }