Skip to content
Snippets Groups Projects
Commit a594a0d9 authored by Marcin's avatar Marcin
Browse files

rename hafd.irreversibla _datat to hafd.hive_state

parent 93a2cb14
No related branches found
No related tags found
1 merge request!595issue haf#236 add sync_state type and column in irreversible_data
Showing
with 45 additions and 45 deletions
......@@ -37,7 +37,7 @@ BEGIN
_name
, _schema
, ( SELECT MAX( hf.id ) FROM hafd.fork hf ) -- current fork id
, COALESCE( ( SELECT hid.consistent_block FROM hafd.irreversible_data hid ), 0 ) -- head of irreversible block
, COALESCE( ( SELECT hid.consistent_block FROM hafd.hive_state hid ), 0 ) -- head of irreversible block
, _is_forking
, _is_attached
, NULL
......@@ -67,7 +67,7 @@ BEGIN
_name
, _schema
, ( SELECT MAX( hf.id ) FROM hafd.fork hf ) -- current fork id
, COALESCE( ( SELECT hid.consistent_block FROM hafd.irreversible_data hid ), 0 ) -- head of irreversible block
, COALESCE( ( SELECT hid.consistent_block FROM hafd.hive_state hid ), 0 ) -- head of irreversible block
, _is_forking
, False
, _stages
......@@ -241,7 +241,7 @@ BEGIN
WHERE hc.name = __lead_context;
SELECT hir.consistent_block INTO __head_of_irreversible_block
FROM hafd.irreversible_data hir;
FROM hafd.hive_state hir;
IF __current_block_num > __head_of_irreversible_block THEN
RAISE EXCEPTION 'Cannot attach context % because the block num % is grater than top of irreversible block %'
......@@ -477,7 +477,7 @@ $BODY$
DECLARE
__result hafd.contexts.irreversible_block%TYPE;
BEGIN
SELECT COALESCE( consistent_block, 0 ) INTO __result FROM hafd.irreversible_data;
SELECT COALESCE( consistent_block, 0 ) INTO __result FROM hafd.hive_state;
RETURN __result;
END;
$BODY$;
......@@ -858,7 +858,7 @@ BEGIN
FROM UNNEST(_contexts) AS context_names(name)
LEFT JOIN hafd.contexts hc USING(name)
JOIN hafd.contexts_attachment hca ON hca.context_id = hc.id
CROSS JOIN hafd.irreversible_data), FALSE);
CROSS JOIN hafd.hive_state), FALSE);
END;
$BODY$
;
......
......@@ -69,7 +69,7 @@ BEGIN
, hc.fork_id
INTO __curent_events_id, __current_context_block_num, __current_context_irreversible_block, __current_fork_id
FROM hafd.contexts hc WHERE hc.name = __lead_context;
SELECT consistent_block INTO __newest_irreversible_block_num FROM hafd.irreversible_data;
SELECT consistent_block INTO __newest_irreversible_block_num FROM hafd.hive_state;
-- hived can at any moment commit new events
-- because of read committed, we need to be ready such situations
......@@ -207,7 +207,7 @@ BEGIN
FROM hafd.contexts as hc
WHERE hc.name = __lead_context;
SELECT consistent_block INTO __newest_irreversible_block_num FROM hafd.irreversible_data;
SELECT consistent_block INTO __newest_irreversible_block_num FROM hafd.hive_state;
IF __current_block_num <= __irreversible_block_num
AND __newest_irreversible_block_num IS NOT NULL THEN
......
......@@ -45,7 +45,7 @@ DECLARE
__lead_context_distance_to_irr_hb INTEGER;
BEGIN
SELECT
( ( SELECT COALESCE( hid.consistent_block, 0 ) - ctx.current_block_num FROM hafd.irreversible_data hid ) ) INTO __lead_context_distance_to_irr_hb
( ( SELECT COALESCE( hid.consistent_block, 0 ) - ctx.current_block_num FROM hafd.hive_state hid ) ) INTO __lead_context_distance_to_irr_hb
FROM hafd.contexts ctx
WHERE ctx.name = _contexts [ 1 ];
......
......@@ -40,7 +40,7 @@ ALTER TABLE hafd.operations OWNER TO hived_group;
ALTER TABLE hafd.transactions_multisig OWNER TO hived_group;
ALTER TABLE hafd.accounts OWNER TO hived_group;
ALTER TABLE hafd.account_operations OWNER TO hived_group;
ALTER TABLE hafd.irreversible_data OWNER TO hived_group;
ALTER TABLE hafd.hive_state OWNER TO hived_group;
ALTER TABLE hafd.blocks_reversible OWNER TO hived_group;
ALTER TABLE hafd.transactions_reversible OWNER TO hived_group;
ALTER TABLE hafd.operations_reversible OWNER TO hived_group;
......
......@@ -11,7 +11,7 @@ UNION ALL
(
WITH
consistent_block AS
(SELECT COALESCE(hid.consistent_block, 0) AS consistent_block FROM hafd.irreversible_data hid LIMIT 1)
(SELECT COALESCE(hid.consistent_block, 0) AS consistent_block FROM hafd.hive_state hid LIMIT 1)
,forks AS
(
SELECT hbr.num, max(hbr.fork_id) AS max_fork_id
......@@ -52,7 +52,7 @@ FROM
JOIN (
SELECT hbr.num, MAX(hbr.fork_id) as max_fork_id
FROM hafd.blocks_reversible hbr
WHERE hbr.num > ( SELECT COALESCE( hid.consistent_block, 0 ) FROM hafd.irreversible_data hid )
WHERE hbr.num > ( SELECT COALESCE( hid.consistent_block, 0 ) FROM hafd.hive_state hid )
GROUP by hbr.num
) as forks ON forks.max_fork_id = har.fork_id AND forks.num = har.block_num
) reversible
......@@ -120,7 +120,7 @@ FROM (
(
SELECT rb.num, MAX(rb.fork_id) AS max_fork_id
FROM hafd.blocks_reversible rb
WHERE rb.num > ( SELECT COALESCE( hid.consistent_block, 0 ) FROM hafd.irreversible_data hid )
WHERE rb.num > ( SELECT COALESCE( hid.consistent_block, 0 ) FROM hafd.hive_state hid )
GROUP BY rb.num
) visible_blks ON visible_blks.num = hbr.num AND visible_blks.max_fork_id = hbr.fork_id
) t
......@@ -166,7 +166,7 @@ FROM
JOIN (
SELECT hbr.num, MAX(hbr.fork_id) as max_fork_id
FROM hafd.blocks_reversible hbr
WHERE hbr.num > ( SELECT COALESCE( hid.consistent_block, 0 ) FROM hafd.irreversible_data hid )
WHERE hbr.num > ( SELECT COALESCE( hid.consistent_block, 0 ) FROM hafd.hive_state hid )
GROUP by hbr.num
) as forks ON forks.max_fork_id = htr.fork_id AND forks.num = htr.block_num
) reversible
......@@ -209,7 +209,7 @@ FROM
(
SELECT hbr.num, MAX(hbr.fork_id) as max_fork_id
FROM hafd.blocks_reversible hbr
WHERE hbr.num > ( SELECT COALESCE( hid.consistent_block, 0 ) FROM hafd.irreversible_data hid )
WHERE hbr.num > ( SELECT COALESCE( hid.consistent_block, 0 ) FROM hafd.hive_state hid )
GROUP by hbr.num
) visible_ops on visible_ops.num = hafd.operation_id_to_block_num(o.id) and visible_ops.max_fork_id = o.fork_id
JOIN
......@@ -252,7 +252,7 @@ FROM
(
SELECT hbr.num, MAX(hbr.fork_id) as max_fork_id
FROM hafd.blocks_reversible hbr
WHERE hbr.num > ( SELECT COALESCE( hid.consistent_block, 0 ) FROM hafd.irreversible_data hid )
WHERE hbr.num > ( SELECT COALESCE( hid.consistent_block, 0 ) FROM hafd.hive_state hid )
GROUP by hbr.num
) visible_ops on visible_ops.num = hafd.operation_id_to_block_num(o.id) and visible_ops.max_fork_id = o.fork_id
) t
......@@ -283,7 +283,7 @@ FROM (
JOIN (
SELECT hbr.num, MAX(hbr.fork_id) as max_fork_id
FROM hafd.blocks_reversible hbr
WHERE hbr.num > ( SELECT COALESCE( hid.consistent_block, 0 ) FROM hafd.irreversible_data hid )
WHERE hbr.num > ( SELECT COALESCE( hid.consistent_block, 0 ) FROM hafd.hive_state hid )
GROUP by hbr.num
) as forks ON forks.max_fork_id = htr.fork_id AND forks.num = htr.block_num
) as trr ON trr.trx_hash = htmr.trx_hash AND trr.max_fork_id = htmr.fork_id
......@@ -301,7 +301,7 @@ UNION ALL
(
WITH
consistent_block AS
(SELECT COALESCE(hid.consistent_block, 0) AS consistent_block FROM hafd.irreversible_data hid LIMIT 1)
(SELECT COALESCE(hid.consistent_block, 0) AS consistent_block FROM hafd.hive_state hid LIMIT 1)
,forks AS
(
SELECT hbr.num, max(hbr.fork_id) AS max_fork_id
......
......@@ -113,7 +113,7 @@ BEGIN
-- application contexts will use the event to clear data in shadow tables
INSERT INTO hafd.events_queue( event, block_num )
VALUES( 'NEW_IRREVERSIBLE', _block_num );
UPDATE hafd.irreversible_data SET consistent_block = _block_num;
UPDATE hafd.hive_state SET consistent_block = _block_num;
END;
$BODY$
;
......@@ -141,7 +141,7 @@ BEGIN
UPDATE hafd.irreversible_data SET consistent_block = _block_num;
UPDATE hafd.hive_state SET consistent_block = _block_num;
END;
$BODY$
;
......@@ -153,7 +153,7 @@ CREATE OR REPLACE FUNCTION hive.set_irreversible_dirty()
AS
$BODY$
BEGIN
UPDATE hafd.irreversible_data SET is_dirty = TRUE;
UPDATE hafd.hive_state SET is_dirty = TRUE;
END;
$BODY$
;
......@@ -165,7 +165,7 @@ CREATE OR REPLACE FUNCTION hive.set_irreversible_not_dirty()
AS
$BODY$
BEGIN
UPDATE hafd.irreversible_data SET is_dirty = FALSE;
UPDATE hafd.hive_state SET is_dirty = FALSE;
END;
$BODY$
;
......@@ -179,7 +179,7 @@ $BODY$
DECLARE
__is_dirty BOOL := FALSE;
BEGIN
SELECT is_dirty INTO __is_dirty FROM hafd.irreversible_data;
SELECT is_dirty INTO __is_dirty FROM hafd.hive_state;
RETURN __is_dirty;
END;
$BODY$
......@@ -212,7 +212,7 @@ CREATE OR REPLACE FUNCTION hive.disable_fk_of_irreversible()
AS
$BODY$
BEGIN
PERFORM hive.save_and_drop_foreign_keys( 'hafd', 'irreversible_data' );
PERFORM hive.save_and_drop_foreign_keys( 'hafd', 'hive_state' );
PERFORM hive.save_and_drop_foreign_keys( 'hafd', 'blocks' );
PERFORM hive.save_and_drop_foreign_keys( 'hafd', 'transactions' );
PERFORM hive.save_and_drop_foreign_keys( 'hafd', 'transactions_multisig' );
......@@ -239,7 +239,7 @@ BEGIN
PERFORM hive.restore_indexes( 'hafd.applied_hardforks' );
PERFORM hive.restore_indexes( 'hafd.accounts' );
PERFORM hive.restore_indexes( 'hafd.account_operations' );
PERFORM hive.restore_indexes( 'hafd.irreversible_data' );
PERFORM hive.restore_indexes( 'hafd.hive_state' );
PERFORM hive.reanalyze_indexes_with_expressions();
END;
......@@ -259,7 +259,7 @@ BEGIN
PERFORM hive.restore_foreign_keys( 'hafd.transactions_multisig' );
PERFORM hive.restore_foreign_keys( 'hafd.operations' );
PERFORM hive.restore_foreign_keys( 'hafd.applied_hardforks' );
PERFORM hive.restore_foreign_keys( 'hafd.irreversible_data' );
PERFORM hive.restore_foreign_keys( 'hafd.hive_state' );
PERFORM hive.restore_foreign_keys( 'hafd.accounts' );
PERFORM hive.restore_foreign_keys( 'hafd.account_operations' );
......@@ -455,7 +455,7 @@ BEGIN
RETURN;
END IF;
INSERT INTO hafd.irreversible_data VALUES(1,NULL, FALSE) ON CONFLICT DO NOTHING;
INSERT INTO hafd.hive_state VALUES(1,NULL, FALSE) ON CONFLICT DO NOTHING;
INSERT INTO hafd.events_queue VALUES( 0, 'NEW_IRREVERSIBLE', 0 ) ON CONFLICT DO NOTHING;
INSERT INTO hafd.events_queue VALUES( hive.unreachable_event_id(), 'NEW_BLOCK', 2147483647 ) ON CONFLICT DO NOTHING;
SELECT MAX(eq.id) + 1 FROM hafd.events_queue eq WHERE eq.id != hive.unreachable_event_id() INTO __events_id;
......
......@@ -312,7 +312,7 @@ DECLARE
__upper_bound_events_id BIGINT := NULL;
__max_block_num INTEGER := NULL;
BEGIN
SELECT consistent_block INTO __max_block_num FROM hafd.irreversible_data;
SELECT consistent_block INTO __max_block_num FROM hafd.hive_state;
-- find the upper bound of events possible to remove
SELECT MIN(heq.id) INTO __upper_bound_events_id
......@@ -590,7 +590,7 @@ DECLARE
__consistent_block INTEGER := NULL;
__is_dirty BOOL := TRUE;
BEGIN
SELECT consistent_block, is_dirty INTO __consistent_block, __is_dirty FROM hafd.irreversible_data;
SELECT consistent_block, is_dirty INTO __consistent_block, __is_dirty FROM hafd.hive_state;
IF ( __is_dirty = FALSE ) THEN
RETURN;
......@@ -613,7 +613,7 @@ BEGIN
DELETE FROM hafd.blocks WHERE num > __consistent_block;
UPDATE hafd.irreversible_data SET is_dirty = FALSE;
UPDATE hafd.hive_state SET is_dirty = FALSE;
END;
$BODY$
;
......
......@@ -39,7 +39,7 @@ CREATE TYPE hafd.sync_state AS ENUM (
);
CREATE TABLE IF NOT EXISTS hafd.irreversible_data (
CREATE TABLE IF NOT EXISTS hafd.hive_state (
id integer,
consistent_block integer,
is_dirty bool NOT NULL,
......@@ -50,8 +50,8 @@ CREATE TABLE IF NOT EXISTS hafd.irreversible_data (
-- We use ADD CONSTRAINT with ALTER TABLE followed by NOT VALID because the NOT VALID option isn't documented
-- or supported within CREATE TABLE, and thus, seems not to work there.
-- This applies to the following tables as well.
ALTER TABLE hafd.irreversible_data ADD CONSTRAINT fk_1_hive_irreversible_data FOREIGN KEY (consistent_block) REFERENCES hafd.blocks (num) NOT VALID;
SELECT pg_catalog.pg_extension_config_dump('hafd.irreversible_data', '');
ALTER TABLE hafd.hive_state ADD CONSTRAINT fk_1_hive_irreversible_data FOREIGN KEY (consistent_block) REFERENCES hafd.blocks (num) NOT VALID;
SELECT pg_catalog.pg_extension_config_dump('hafd.hive_state', '');
CREATE TABLE IF NOT EXISTS hafd.transactions (
block_num integer NOT NULL,
......
......@@ -80,7 +80,7 @@ indexes_controler::enable_indexes() {
fc::time_point restore_indexes_start_time = fc::time_point::now();
auto restore_blocks_idxs = start_commit_sql( true, "hive.restore_indexes( 'hafd.blocks' )", "enable indexes" );
auto restore_irreversible_idxs = start_commit_sql( true, "hive.restore_indexes( 'hafd.irreversible_data' )", "enable indexes" );
auto restore_irreversible_idxs = start_commit_sql( true, "hive.restore_indexes( 'hafd.hive_state' )", "enable indexes" );
auto restore_transactions_idxs = start_commit_sql( true, "hive.restore_indexes( 'hafd.transactions' )", "enable indexes" );
auto restore_transactions_sigs_idxs = start_commit_sql( true, "hive.restore_indexes( 'hafd.transactions_multisig' )", "enable indexes" );
auto restore_operations_idxs = start_commit_sql( true, "hive.restore_indexes( 'hafd.operations' )", "enable indexes" );
......@@ -122,7 +122,7 @@ indexes_controler::enable_constrains() {
ilog("Restoring HAF constraints...");
fc::time_point restore_constraints_start_time = fc::time_point::now();
auto restore_irreversible_fks = start_commit_sql( true, "hive.restore_foreign_keys( 'hafd.irreversible_data' )", "enable indexes" );
auto restore_irreversible_fks = start_commit_sql( true, "hive.restore_foreign_keys( 'hafd.hive_state' )", "enable indexes" );
auto restore_transactions_fks = start_commit_sql( true, "hive.restore_foreign_keys( 'hafd.transactions' )", "enable indexes" );
auto restore_transactions_sigs_fks = start_commit_sql( true, "hive.restore_foreign_keys( 'hafd.transactions_multisig' )", "enable indexes" );
auto restore_operations_fks = start_commit_sql( true, "hive.restore_foreign_keys( 'hafd.operations' )", "enable indexes" );
......
......@@ -14,7 +14,7 @@ psql "$POSTGRES_ACCESS" --command="${cmd}"
#restore indexes
cmd="select hive.restore_indexes( 'hafd.blocks' );"
psql "$POSTGRES_ACCESS" --command="${cmd}" &
cmd="select hive.restore_indexes( 'hafd.irreversible_data' );"
cmd="select hive.restore_indexes( 'hafd.hive_state' );"
psql "$POSTGRES_ACCESS" --command="${cmd}" &
cmd="select hive.restore_indexes( 'hafd.transactions' );"
psql "$POSTGRES_ACCESS" --command="${cmd}" &
......
......@@ -118,7 +118,7 @@ BEGIN
, ( 1100, 3, hafd.operation_id(10,1,0), 3 )
;
UPDATE hafd.irreversible_data SET consistent_block = 4;
UPDATE hafd.hive_state SET consistent_block = 4;
END;
$BODY$
;
......
......@@ -59,7 +59,7 @@ BEGIN
, ( 1100, 'alice103', 10, 3 )
;
UPDATE hafd.irreversible_data SET consistent_block = 5;
UPDATE hafd.hive_state SET consistent_block = 5;
END;
$BODY$
;
......
......@@ -29,7 +29,7 @@ BEGIN
VALUES (5, 'initminer', 1)
;
UPDATE hafd.irreversible_data SET consistent_block = 3;
UPDATE hafd.hive_state SET consistent_block = 3;
CREATE SCHEMA A;
PERFORM hive.app_create_context( _name => 'context', _schema => 'a' );
......
......@@ -21,7 +21,7 @@ BEGIN
VALUES (5, 'initminer', 1)
;
UPDATE hafd.irreversible_data SET consistent_block = 3;
UPDATE hafd.hive_state SET consistent_block = 3;
CREATE SCHEMA A;
PERFORM hive.app_create_context( _name => 'context', _schema => 'a' );
......
......@@ -29,7 +29,7 @@ BEGIN
VALUES (5, 'initminer', 1)
;
UPDATE hafd.irreversible_data SET consistent_block = 3;
UPDATE hafd.hive_state SET consistent_block = 3;
CREATE SCHEMA A;
PERFORM hive.app_create_context( _name => 'context', _schema => 'a' );
......
......@@ -98,7 +98,7 @@ VALUES
, ( 10, 10, hafd.operation_id(10, 1, 0), 3 )
;
UPDATE hafd.irreversible_data SET consistent_block = 5;
UPDATE hafd.hive_state SET consistent_block = 5;
END;
$BODY$
;
......
......@@ -41,7 +41,7 @@ BEGIN
, ( 10, '\xBADD1A', '\xCAFE1A', '2016-06-22 19:10:32-07'::timestamp, 5, '\x4007', E'[]', '\x2157', 'STM65w', 1000, 1000, 1000000, 1000, 1000, 1000, 2000, 2000, 3 )
;
UPDATE hafd.irreversible_data SET consistent_block = 5;
UPDATE hafd.hive_state SET consistent_block = 5;
END;
$BODY$
;
......
......@@ -88,7 +88,7 @@ BEGIN
, ( hafd.operation_id(10, 1, 0), 0, 0, '{"type":"system_warning_operation","value":{"message":"TEN OPERATION"}}' :: jsonb :: hafd.operation, 3 )
;
UPDATE hafd.irreversible_data SET consistent_block = 5;
UPDATE hafd.hive_state SET consistent_block = 5;
END;
$BODY$
;
......
......@@ -87,7 +87,7 @@ BEGIN
, ( '\xDEED1102', '\xBEEF13', 3 )
;
UPDATE hafd.irreversible_data SET consistent_block = 5;
UPDATE hafd.hive_state SET consistent_block = 5;
END;
$BODY$
;
......
......@@ -61,7 +61,7 @@ BEGIN
, ( 10, 0::SMALLINT, '\xDEED11', 101, 100, '2016-06-22 19:10:30-07'::timestamp, '\xBEEF', 3 )
;
UPDATE hafd.irreversible_data SET consistent_block = 5;
UPDATE hafd.hive_state SET consistent_block = 5;
END;
$BODY$
;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment