Fix old-data deletion query
This commit is contained in:
parent
cf1de61d4c
commit
9fd1f4d25d
|
@ -511,7 +511,9 @@ fn init_postgres(
|
||||||
let query = query!(" \
|
let query = query!(" \
|
||||||
DELETE FROM account_write \
|
DELETE FROM account_write \
|
||||||
USING ( \
|
USING ( \
|
||||||
SELECT DISTINCT ON(pubkey) pubkey, slot, write_version FROM account_write \
|
SELECT DISTINCT ON(pubkey) pubkey, slot, write_version \
|
||||||
|
FROM account_write \
|
||||||
|
INNER JOIN slot USING(slot) \
|
||||||
WHERE slot <= $newest_final_slot AND status = 'rooted' \
|
WHERE slot <= $newest_final_slot AND status = 'rooted' \
|
||||||
ORDER BY pubkey, slot DESC, write_version DESC \
|
ORDER BY pubkey, slot DESC, write_version DESC \
|
||||||
) latest_write \
|
) latest_write \
|
||||||
|
|
Loading…
Reference in New Issue