We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e7650c commit fb6eb78Copy full SHA for fb6eb78
schema/filter.go
@@ -81,6 +81,8 @@ func (s *Schema) SepareteTablesThatAreIncludedOrNot(opt *FilterOption) (_ []*Tab
81
for _, tt := range ts {
82
if !lo.ContainsBy(includes, func(t *Table) bool {
83
return tt.Name == t.Name
84
+ }) && !lo.ContainsBy(includes2, func(t *Table) bool {
85
+ return tt.Name == t.Name
86
}) {
87
includes2 = append(includes2, tt)
88
}
0 commit comments