timescaledb/timescaledb.control.in
Sven Klemm 2959bd4294 Set license specific extension comment in install script
Remove the license information from the control file as we package
that with the generic loader and will be used for both Apache licensed
and TSL licensed versions of the extension. This patch adjusts
the extension comment in the install and update script and adds the
appropriate license information.

The effective change from this PR will be that pg_available_extensions
will show the generic message but `\dx` whill show the correct info
depending on what you installed. This setup is mainly due to packaging
constraints as we have 3 extension packages. The loader package,
apache 2 package and community package. The loader package is shared
between apache 2 and community and has the control file with the
extension commment so we dont know which timescaledb version we are
used with in that package.
2024-10-08 07:13:35 +02:00

9 lines
412 B
Plaintext

# timescaledb extension
comment = 'Enables scalable inserts and complex queries for time-series data'
default_version = '@PROJECT_VERSION_MOD@'
module_pathname = '$libdir/timescaledb-@PROJECT_VERSION_MOD@'
#extension cannot be relocatable once installed because it uses multiple schemas and that is forbidden by PG.
#(though this extension is relocatable during installation).
relocatable = false
trusted = true