Skip to content

Commit

Permalink
Remove mssql support until the core code is stabalized
Browse files Browse the repository at this point in the history
  • Loading branch information
williammoran committed Apr 23, 2024
1 parent a0484eb commit 2736632
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 60 deletions.
8 changes: 0 additions & 8 deletions lib/format/mssql10/mssql10.go

This file was deleted.

48 changes: 0 additions & 48 deletions lib/format/mssql10/operations.go

This file was deleted.

6 changes: 2 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package main
import (
"github.com/dbsteward/dbsteward/lib"
"github.com/dbsteward/dbsteward/lib/format"
"github.com/dbsteward/dbsteward/lib/format/mssql10"
"github.com/dbsteward/dbsteward/lib/format/mysql5"
"github.com/dbsteward/dbsteward/lib/format/pgsql8"
"github.com/dbsteward/dbsteward/lib/ir"
Expand All @@ -12,9 +11,8 @@ import (
func main() {
// correlates to bin/dbsteward
lib.GlobalDBSteward = lib.NewDBSteward(format.LookupMap{
ir.SqlFormatPgsql8: pgsql8.GlobalLookup,
ir.SqlFormatMysql5: mysql5.GlobalLookup,
ir.SqlFormatMssql10: mssql10.GlobalLookup,
ir.SqlFormatPgsql8: pgsql8.GlobalLookup,
ir.SqlFormatMysql5: mysql5.GlobalLookup,
})
lib.GlobalDBSteward.ArgParse()
lib.GlobalDBSteward.Notice("Done")
Expand Down

0 comments on commit 2736632

Please sign in to comment.