mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-16 18:43:18 +08:00
This changes the license text for SQL files to be identical with the license text for C files.
49 lines
1.9 KiB
PL/PgSQL
49 lines
1.9 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
|
|
end_time TIMESTAMPTZ;
|
|
expiration_time_string TEXT;
|
|
BEGIN
|
|
end_time := _timescaledb_internal.license_expiration_time();
|
|
|
|
IF end_time IS NOT NULL AND isfinite(end_time)
|
|
THEN
|
|
expiration_time_string = format(E'\nYour license expires on %s\n', end_time);
|
|
ELSE
|
|
expiration_time_string = '';
|
|
END IF;
|
|
|
|
RAISE WARNING E'%\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\n' ||
|
|
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.',
|
|
expiration_time_string;
|
|
|
|
IF now() > end_time
|
|
THEN
|
|
RAISE WARNING E'%\n', format('Your license expired on %s', end_time);
|
|
ELSIF now() + INTERVAL '1 week' >= end_time
|
|
THEN
|
|
RAISE WARNING E'%\n', format('Your license will expire on %s', end_time);
|
|
END IF;
|
|
|
|
END;
|
|
$$;
|
|
|
|
select _timescaledb_internal.print_license_expiration_info();
|