CheckMatchIgnoreTables Bug?
ymakedaq opened this issue · 2 comments
ymakedaq commented
func (cfg *Config) CheckMatchIgnoreTables(name string) bool {
if len(cfg.TablesIGNORE) == 0 {
return true // ****should return false****
}
for _, tableName := range cfg.TablesIGNORE {
if simpleMatch(tableName, name, "CheckMatchTables") {
return true
}
}
return false
}
514366607 commented
sorry about that . please add config.json tables_ignore : ["a"] skip or clone my branch .
ymakedaq commented
Got