Skip to content

Commit a8f7851

Browse files
authored
fix(blooms): Fix tenants slice on loadTenantTables (#14900)
1 parent ee1ab5c commit a8f7851

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎pkg/bloombuild/planner/planner.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ func (p *Planner) loadTenantTables(
654654

655655
// If this is the first this we see this table, initialize the map
656656
if tenantTables[table] == nil {
657-
tenantTables[table] = make([]string, tenants.Remaining())
657+
tenantTables[table] = make([]string, 0, tenants.Remaining())
658658
}
659659

660660
for tenants.Next() && tenants.Err() == nil && ctx.Err() == nil {

0 commit comments

Comments
 (0)