Skip to content

Commit ecba34c

Browse files
committed
Change ON CONFLICT clauses to do nothing
1 parent 9db8c59 commit ecba34c

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

statediff/indexer/database/sql/postgres/database.go

+11-11
Original file line numberDiff line numberDiff line change
@@ -40,65 +40,65 @@ type DB struct {
4040
func (db *DB) InsertHeaderStm() string {
4141
return `INSERT INTO eth.header_cids (block_number, block_hash, parent_hash, cid, td, node_id, reward, state_root, tx_root, receipt_root, uncle_root, bloom, timestamp, mh_key, times_validated, coinbase)
4242
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16)
43-
ON CONFLICT (block_hash, block_number) DO UPDATE SET (parent_hash, cid, td, node_id, reward, state_root, tx_root, receipt_root, uncle_root, bloom, timestamp, mh_key, times_validated, coinbase) = ($3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, eth.header_cids.times_validated + 1, $16)`
43+
ON CONFLICT DO NOTHING`
4444
}
4545

4646
// InsertUncleStm satisfies the sql.Statements interface
4747
func (db *DB) InsertUncleStm() string {
4848
return `INSERT INTO eth.uncle_cids (block_number, block_hash, header_id, parent_hash, cid, reward, mh_key) VALUES ($1, $2, $3, $4, $5, $6, $7)
49-
ON CONFLICT (block_hash, block_number) DO NOTHING`
49+
ON CONFLICT DO NOTHING`
5050
}
5151

5252
// InsertTxStm satisfies the sql.Statements interface
5353
func (db *DB) InsertTxStm() string {
5454
return `INSERT INTO eth.transaction_cids (block_number, header_id, tx_hash, cid, dst, src, index, mh_key, tx_data, tx_type, value) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11)
55-
ON CONFLICT (tx_hash, block_number) DO NOTHING`
55+
ON CONFLICT DO NOTHING`
5656
}
5757

5858
// InsertAccessListElementStm satisfies the sql.Statements interface
5959
func (db *DB) InsertAccessListElementStm() string {
6060
return `INSERT INTO eth.access_list_elements (block_number, tx_id, index, address, storage_keys) VALUES ($1, $2, $3, $4, $5)
61-
ON CONFLICT (tx_id, index, block_number) DO NOTHING`
61+
ON CONFLICT DO NOTHING`
6262
}
6363

6464
// InsertRctStm satisfies the sql.Statements interface
6565
func (db *DB) InsertRctStm() string {
6666
return `INSERT INTO eth.receipt_cids (block_number, tx_id, leaf_cid, contract, contract_hash, leaf_mh_key, post_state, post_status, log_root) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9)
67-
ON CONFLICT (tx_id, block_number) DO NOTHING`
67+
ON CONFLICT DO NOTHING`
6868
}
6969

7070
// InsertLogStm satisfies the sql.Statements interface
7171
func (db *DB) InsertLogStm() string {
7272
return `INSERT INTO eth.log_cids (block_number, leaf_cid, leaf_mh_key, rct_id, address, index, topic0, topic1, topic2, topic3, log_data) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11)
73-
ON CONFLICT (rct_id, index, block_number) DO NOTHING`
73+
ON CONFLICT DO NOTHING`
7474
}
7575

7676
// InsertStateStm satisfies the sql.Statements interface
7777
func (db *DB) InsertStateStm() string {
7878
return `INSERT INTO eth.state_cids (block_number, header_id, state_leaf_key, cid, state_path, node_type, diff, mh_key) VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
79-
ON CONFLICT (header_id, state_path, block_number) DO UPDATE SET (block_number, state_leaf_key, cid, node_type, diff, mh_key) = ($1, $3, $4, $6, $7, $8)`
79+
ON CONFLICT DO NOTHING`
8080
}
8181

8282
// InsertAccountStm satisfies the sql.Statements interface
8383
func (db *DB) InsertAccountStm() string {
8484
return `INSERT INTO eth.state_accounts (block_number, header_id, state_path, balance, nonce, code_hash, storage_root) VALUES ($1, $2, $3, $4, $5, $6, $7)
85-
ON CONFLICT (header_id, state_path, block_number) DO NOTHING`
85+
ON CONFLICT DO NOTHING`
8686
}
8787

8888
// InsertStorageStm satisfies the sql.Statements interface
8989
func (db *DB) InsertStorageStm() string {
9090
return `INSERT INTO eth.storage_cids (block_number, header_id, state_path, storage_leaf_key, cid, storage_path, node_type, diff, mh_key) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9)
91-
ON CONFLICT (header_id, state_path, storage_path, block_number) DO UPDATE SET (block_number, storage_leaf_key, cid, node_type, diff, mh_key) = ($1, $4, $5, $7, $8, $9)`
91+
ON CONFLICT DO NOTHING`
9292
}
9393

9494
// InsertIPLDStm satisfies the sql.Statements interface
9595
func (db *DB) InsertIPLDStm() string {
96-
return `INSERT INTO public.blocks (block_number, key, data) VALUES ($1, $2, $3) ON CONFLICT (block_number, key) DO NOTHING`
96+
return `INSERT INTO public.blocks (block_number, key, data) VALUES ($1, $2, $3) ON CONFLICT DO NOTHING`
9797
}
9898

9999
// InsertIPLDsStm satisfies the sql.Statements interface
100100
func (db *DB) InsertIPLDsStm() string {
101-
return `INSERT INTO public.blocks (block_number, key, data) VALUES (unnest($1::BIGINT[]), unnest($2::TEXT[]), unnest($3::BYTEA[])) ON CONFLICT (block_number, key) DO NOTHING`
101+
return `INSERT INTO public.blocks (block_number, key, data) VALUES (unnest($1::BIGINT[]), unnest($2::TEXT[]), unnest($3::BYTEA[])) ON CONFLICT DO NOTHING`
102102
}
103103

104104
// InsertKnownGapsStm satisfies the sql.Statements interface

0 commit comments

Comments
 (0)