Skip to content

Commit

Permalink
fix more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
max-hoffman committed Oct 18, 2024
1 parent 9fb6704 commit dd4fda5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions go/libraries/doltcore/sqle/statspro/stats_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -270,10 +270,12 @@ func (p *Provider) DropDbStats(ctx *sql.Context, db string, flush bool) error {
}
for _, branch := range statDb.Branches() {
// remove provider access
p.DropBranchDbStats(ctx, db, branch, flush)
p.DropBranchDbStats(ctx, branch, db, flush)
}

p.deleteStatDb(db)
if flush {
p.deleteStatDb(db)
}

return nil
}
Expand Down

0 comments on commit dd4fda5

Please sign in to comment.