mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-19 12:13:24 +08:00
This patch removes enterprise license support and moves move_chunk() function under community license (TSL). Licensing validation code been reworked and simplified. Previously used timescaledb.license_key guc been renamed to timescaledb.license. This change also makes testing code more strict against used license. Apache test suite now can test only apache-licensed functions. Fixes #2359
34 lines
1.7 KiB
PL/PgSQL
34 lines
1.7 KiB
PL/PgSQL
-- 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.
|
|
|
|
DO language plpgsql $$
|
|
DECLARE
|
|
telemetry_string TEXT;
|
|
BEGIN
|
|
IF current_setting('timescaledb.telemetry_level') = 'off'
|
|
THEN
|
|
telemetry_string = E'Note: Please enable telemetry to help us improve our product by running: ALTER DATABASE "' || current_database() || E'" SET timescaledb.telemetry_level = ''basic'';';
|
|
ELSE
|
|
telemetry_string = E'Note: TimescaleDB collects anonymous reports to better understand and assist our users.\nFor more information and how to disable, please see our docs https://docs.timescaledb.com/using-timescaledb/telemetry.';
|
|
END IF;
|
|
|
|
RAISE WARNING E'%\n%\n',
|
|
E'\nWELCOME TO\n' ||
|
|
E' _____ _ _ ____________ \n' ||
|
|
E'|_ _(_) | | | _ \\ ___ \\ \n' ||
|
|
E' | | _ _ __ ___ ___ ___ ___ __ _| | ___| | | | |_/ / \n' ||
|
|
' | | | | _ ` _ \ / _ \/ __|/ __/ _` | |/ _ \ | | | ___ \ ' || E'\n' ||
|
|
' | | | | | | | | | __/\__ \ (_| (_| | | __/ |/ /| |_/ /' || E'\n' ||
|
|
' |_| |_|_| |_| |_|\___||___/\___\__,_|_|\___|___/ \____/' || E'\n' ||
|
|
E' Running version ' || '@PROJECT_VERSION_MOD@' || E'\n' ||
|
|
|
|
E'For more information on TimescaleDB, please visit the following links:\n\n'
|
|
||
|
|
E' 1. Getting started: https://docs.timescale.com/getting-started\n' ||
|
|
E' 2. API reference documentation: https://docs.timescale.com/api\n' ||
|
|
E' 3. How TimescaleDB is designed: https://docs.timescale.com/introduction/architecture\n',
|
|
telemetry_string;
|
|
END;
|
|
$$;
|