mirror of
https://github.com/timescale/timescaledb.git
synced 2025-06-02 11:16:47 +08:00
PG13 adds the trusted attribute to extensions. Extensions marked as trusted do not require superuser privileges, but can be installed by a non-superuser with CREATE privilege in the database. The objects within the extension will be owned by the bootstrap superuser, but the extension itself will be owned by the calling user. https://github.com/postgres/postgres/commit/50fc694e
9 lines
407 B
Plaintext
9 lines
407 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@
|