1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
-- 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.compressed_data_to_array(_timescaledb_internal.compressed_data, ANYELEMENT)
RETURNS ANYARRAY
AS '@MODULE_PATHNAME@', 'ts_compressed_data_to_array'
LANGUAGE C IMMUTABLE PARALLEL SAFE;
CREATE OR REPLACE FUNCTION _timescaledb_functions.compressed_data_column_size(_timescaledb_internal.compressed_data, ANYELEMENT)
RETURNS INTEGER
AS '@MODULE_PATHNAME@', 'ts_compressed_data_column_size'
LANGUAGE C IMMUTABLE PARALLEL SAFE;
|