mirror of https://github.com/VinGarcia/ksql.git
Remove error check when dropping test tables
It was prevent the tests from runningpull/2/head
parent
77631f480c
commit
f9a6372b8a
|
@ -1001,10 +1001,7 @@ func createTable(driver string) error {
|
|||
}
|
||||
defer db.Close()
|
||||
|
||||
_, err = db.Exec(`DROP TABLE users`)
|
||||
if err != nil {
|
||||
return fmt.Errorf("failed to drop old users table: %s", err.Error())
|
||||
}
|
||||
db.Exec(`DROP TABLE users`)
|
||||
|
||||
switch driver {
|
||||
case "sqlite3":
|
||||
|
|
Loading…
Reference in New Issue