Skip to content

Commit

Permalink
Merge pull request #17 from sadihakan/development
Browse files Browse the repository at this point in the history
mssql fix
  • Loading branch information
sadihakan committed Apr 2, 2021
2 parents 6e7b9e5 + faa2f66 commit 236d169
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion example/dummy_dump_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func main() {
panic(err)
}

dd.SetBinaryPath("/usr/local/opt/postgresql@12/bin/psqla", config.PostgreSQL)
dd.SetBinaryPath("/usr/bin/psql", config.PostgreSQL)

if _, err = dd.CheckPath().Run(); err != nil {
panic(err)
Expand Down
5 changes: 5 additions & 0 deletions internal/mssql.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ func (ms MSSQL) Check() error {
return nil
}

func (ms MSSQL) CheckPath(dump config.Config) error {
return nil
}


func (ms MSSQL) Export(dump config.Config) error {
db, err := ms.NewDB(dump)
var location string
Expand Down

0 comments on commit 236d169

Please sign in to comment.