You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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`
92
92
}
93
93
94
94
// InsertIPLDStm satisfies the sql.Statements interface
95
95
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`
97
97
}
98
98
99
99
// InsertIPLDsStm satisfies the sql.Statements interface
100
100
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`
102
102
}
103
103
104
104
// InsertKnownGapsStm satisfies the sql.Statements interface
0 commit comments