(ctx context.Context, db *pgx.Conn, name string)
| 135 | } |
| 136 | |
| 137 | func dropDatabase(ctx context.Context, db *pgx.Conn, name string) error { |
| 138 | _, err := db.Exec(ctx, `DROP DATABASE `+sanitizeDatabaseName(name)+`;`) |
| 139 | return err |
| 140 | } |
no test coverage detected