forked from microsoft/pg_durable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpg_durable.control
More file actions
18 lines (15 loc) · 785 Bytes
/
Copy pathpg_durable.control
File metadata and controls
18 lines (15 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright (c) Microsoft Corporation.
# Licensed under the PostgreSQL License.
comment = 'pg_durable: SQL-native durable orchestrations for PostgreSQL'
default_version = '@CARGO_VERSION@'
module_pathname = 'pg_durable'
relocatable = false
superuser = true
trusted = false
# Note: 'schema' is intentionally omitted. This extension manages two schemas
# (df and the duroxide provider schema), and PostgreSQL's control file only
# supports a single schema directive. The df schema is created by pgrx
# (#[pg_schema]); the duroxide provider schema is created by the
# create_duroxide_schema extension_sql block in src/lib.rs (named '_duroxide'
# on fresh installs, or the legacy 'duroxide' on installs upgraded from
# <= 0.2.2). relocatable = false prevents schema relocation attacks.