mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-15 18:13:18 +08:00
Version 2.14.0 removes the multi-node code. However, there were a few leftovers for the handling of distributed CAggs. This commit cleans up the CAgg code and removes the no longer needed functions: invalidation_cagg_log_add_entry(integer,bigint,bigint); invalidation_hyper_log_add_entry(integer,bigint,bigint); materialization_invalidation_log_delete(integer); invalidation_process_cagg_log(integer,integer,regtype,bigint, bigint,integer[],bigint[],bigint[]); invalidation_process_cagg_log(integer,integer,regtype,bigint, bigint,integer[],bigint[],bigint[],text[]); invalidation_process_hypertable_log(integer,integer,regtype, integer[],bigint[],bigint[]); invalidation_process_hypertable_log(integer,integer,regtype, integer[],bigint[],bigint[],text[]); hypertable_invalidation_log_delete(integer);
14 lines
530 B
SQL
14 lines
530 B
SQL
-- This file and its contents are licensed under the Apache License 2.0.
|
|
-- Please see the included NOTICE for copyright information and
|
|
-- LICENSE-APACHE for a copy of the license.
|
|
|
|
CREATE OR REPLACE FUNCTION _timescaledb_functions.cagg_validate_query(
|
|
query TEXT,
|
|
OUT is_valid BOOLEAN,
|
|
OUT error_level TEXT,
|
|
OUT error_code TEXT,
|
|
OUT error_message TEXT,
|
|
OUT error_detail TEXT,
|
|
OUT error_hint TEXT
|
|
) RETURNS RECORD AS '@MODULE_PATHNAME@', 'ts_continuous_agg_validate_query' LANGUAGE C STRICT VOLATILE;
|