Skip to content

Commit

Permalink
style:
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfcnunes committed Sep 19, 2024
1 parent 2cd50d0 commit 29541f0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion pkg/drivers/mysql/mysql.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,6 @@ func createDBIfNotExist(dataSourceName string) error {
logrus.Warnf("failed to check existence of database %s, going to attempt create: %v", dbName, err)
}


if !exists {
stmt := fmt.Sprintf(createDB, dbName)
logrus.Tracef("SETUP EXEC : %v", util.Stripped(stmt))
Expand Down
1 change: 0 additions & 1 deletion pkg/drivers/pgsql/pgsql.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ func createDBIfNotExist(dataSourceName string) error {
logrus.Warnf("failed to check existence of database %s, going to attempt create: %v", dbName, err)
}


if !exists {
stmt := fmt.Sprintf(createDB, dbName)
logrus.Tracef("SETUP EXEC : %v", util.Stripped(stmt))
Expand Down

0 comments on commit 29541f0

Please sign in to comment.