don't try to build secondary indexes if we don't need them (#17246)
This commit is contained in:
parent
8a574baae2
commit
d461aba6a4
|
@ -5054,14 +5054,16 @@ impl AccountsDb {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
drop(lock);
|
drop(lock);
|
||||||
for (pubkey, account_infos) in accounts_map.into_iter() {
|
if !self.account_indexes.is_empty() {
|
||||||
for (_, (_store_id, stored_account)) in account_infos.iter() {
|
for (pubkey, account_infos) in accounts_map.into_iter() {
|
||||||
self.accounts_index.update_secondary_indexes(
|
for (_, (_store_id, stored_account)) in account_infos.iter() {
|
||||||
&pubkey,
|
self.accounts_index.update_secondary_indexes(
|
||||||
&stored_account.account_meta.owner,
|
&pubkey,
|
||||||
&stored_account.data,
|
&stored_account.account_meta.owner,
|
||||||
&self.account_indexes,
|
&stored_account.data,
|
||||||
);
|
&self.account_indexes,
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue