Add exclude/blacklist tables flag

This commit is contained in:
Patrick O'brien 2016-08-16 20:38:31 +10:00
parent 79dfcf3ebf
commit 1e67965482
7 changed files with 46 additions and 24 deletions

View file

@ -7,7 +7,7 @@ import (
type testInterface struct{}
func (t testInterface) TableNames() ([]string, error) {
func (t testInterface) TableNames(exclude []string) ([]string, error) {
return []string{"table1", "table2"}, nil
}