Update patterns for virtual_operations_filtered replay pattern test
sql:
old db: SELECT COUNT(*) FROM hive.operations; -- result: 12627996
new db without corrections: SELECT COUNT(*) FROM hive.operations; -- result: 12623773
new db: SELECT COUNT(*) + 4263 - 40 FROM hive.operations; -- result: 12627996
info:
`+4263` is because of filtering out `fill_vesting_withdraw_operation` with withdrawn amount equal 0 (use this sql for validation: `SELECT * FROM hive.operations WHERE op_type_id=56 AND ((body :: JSON) -> 'value' -> 'withdrawn' -> 'amount') :: VARCHAR = '"0"'`)
`-40` is because of adding new `system_warning_operation` in this commit: `d70d152bc8780d7a8e1a7c6686d0b0e6920f5f72`
Loading
Please sign in to comment