timescaledb/sql/compression.sql
Mats Kindahl 1373ec31f8 Rename compression TAM to hyperstore
The access method and associated tests is renamed to "hyperstore".
2024-10-16 13:13:34 +02:00

10 lines
475 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 FUNCTION ts_compressionam_handler(internal) RETURNS table_am_handler
AS '@MODULE_PATHNAME@', 'ts_compressionam_handler' LANGUAGE C;
CREATE ACCESS METHOD hyperstore TYPE TABLE HANDLER ts_compressionam_handler;
COMMENT ON ACCESS METHOD hyperstore IS 'TimescaleDB columnar compression';