Refactoring code and optimize import

This commit is contained in:
Andrii Landiak 2022-11-07 18:13:16 +02:00
parent d0090f8b7a
commit fba0cd031b

View File

@ -95,7 +95,6 @@ $$
END;
$$;
CREATE TABLE IF NOT EXISTS edge_event (
id uuid NOT NULL,
created_time bigint NOT NULL,
@ -110,7 +109,6 @@ CREATE TABLE IF NOT EXISTS edge_event (
) PARTITION BY RANGE (created_time);
CREATE INDEX IF NOT EXISTS idx_edge_event_tenant_id_and_created_time ON edge_event(tenant_id, created_time DESC);
CREATE OR REPLACE PROCEDURE migrate_edge_event(IN start_time_ms BIGINT, IN end_time_ms BIGINT, IN partition_size_ms BIGINT)
LANGUAGE plpgsql AS
$$