mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-15 18:13:18 +08:00
- Directory structure now matches common practices - Regression tests now run with pg_regress via the PGXS infrastructure. - Unit tests do not integrate well with pg_regress and have to be run separately. - Docker functionality is separate from main Makefile. Run with `make -f docker.mk` to build and `make -f docker.mk run` to run the database in a container.
23 lines
776 B
PL/PgSQL
23 lines
776 B
PL/PgSQL
-- Trigger on the meta node for when a new hypertable is added.
|
|
CREATE OR REPLACE FUNCTION _iobeamdb_meta.on_change_hypertable()
|
|
RETURNS TRIGGER LANGUAGE PLPGSQL AS
|
|
$BODY$
|
|
BEGIN
|
|
IF TG_OP = 'INSERT' THEN
|
|
INSERT INTO _iobeamdb_catalog.hypertable_replica
|
|
SELECT
|
|
NEW.id,
|
|
replica_id,
|
|
NEW.associated_schema_name,
|
|
format('%s_%s_replica', NEW.associated_table_prefix, replica_id)
|
|
FROM generate_series(0, NEW.replication_factor - 1) AS replica_id;
|
|
|
|
PERFORM _iobeamdb_meta.assign_default_replica_node(n.database_name, NEW.id)
|
|
FROM _iobeamdb_catalog.node n;
|
|
RETURN NEW;
|
|
END IF;
|
|
|
|
PERFORM _iobeamdb_internal.on_trigger_error(TG_OP, TG_TABLE_SCHEMA, TG_TABLE_NAME);
|
|
END
|
|
$BODY$;
|