Skip to content

Commit

Permalink
patched table extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
adranwit committed Oct 3, 2018
1 parent ed92666 commit 14e2921
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dialect.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ func (d *dialect) GetTables(manager dsc.Manager, datastore string) ([]string, er
if strings.HasPrefix(item, "set_name") {
var setName = item[9:]
tables = append(tables, setName)
} else if strings.HasPrefix(item, "set") {
} else if strings.HasPrefix(item, "set=") {
var setName = item[4:]
tables = append(tables, setName)
}
Expand Down

0 comments on commit 14e2921

Please sign in to comment.