minor fixes
This commit is contained in:
parent
cb5f7dea64
commit
8966b1ac28
|
@ -55,8 +55,8 @@ CREATE TABLE banking_stage_results_2.blocks (
|
|||
leader_identity varchar(44) NOT NULL,
|
||||
supp_infos text
|
||||
);
|
||||
-- page layout: blockhash is important
|
||||
ALTER TABLE banking_stage_results_2.blocks SET (toast_tuple_target=128);
|
||||
-- page layout: blockhash is frequently used
|
||||
ALTER TABLE banking_stage_results_2.blocks SET (toast_tuple_target=200);
|
||||
CREATE INDEX idx_blocks_block_hash ON banking_stage_results_2.blocks(block_hash);
|
||||
|
||||
|
||||
|
|
|
@ -515,7 +515,7 @@ impl PostgresSession {
|
|||
let started_at = Instant::now();
|
||||
let num_rows = self.client.execute(statement.as_str(), &[]).await?;
|
||||
debug!(
|
||||
"merged new transactions into accounts_map_transaction_latest for {} accounts in {}ms",
|
||||
"merged new transactions into accounts_map_transaction_latest temp table for {} accounts in {}ms",
|
||||
num_rows,
|
||||
started_at.elapsed().as_millis()
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue