br: Add comment to filterRestoreFiles function (#33353)

close pingcap/tidb#33352
This commit is contained in:
WangLe1321
2022-03-24 17:12:33 +08:00
committed by GitHub
parent 0e043c670b
commit 815a5375fd

View File

@ -184,7 +184,7 @@ func (cfg *RestoreConfig) ParseFromFlags(flags *pflag.FlagSet) error {
}
// adjustRestoreConfig is use for BR(binary) and BR in TiDB.
// When new config was add and not included in parser.
// When new config was added and not included in parser.
// we should set proper value in this function.
// so that both binary and TiDB will use same default value.
func (cfg *RestoreConfig) adjustRestoreConfig() {
@ -532,6 +532,8 @@ func dropToBlackhole(
return outCh
}
// filterRestoreFiles filters tables that can't be processed after applying cfg.TableFilter.MatchTable.
// if the db has no table that can be processed, the db will be filtered too.
func filterRestoreFiles(
client *restore.Client,
cfg *RestoreConfig,