diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2024-02-19 14:17:11 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2024-02-19 14:17:22 -0500 |
commit | 6257ebf1e335b0ca73a460aa9774e3c782506cee (patch) | |
tree | 4cd33cbd9a8dba411d28560f9fbceec3c8e94d3a | |
parent | 88e03d055d18c5f54f81589d13edc76945f0875c (diff) | |
download | postgresql-6257ebf1e335b0ca73a460aa9774e3c782506cee.tar.gz postgresql-6257ebf1e335b0ca73a460aa9774e3c782506cee.zip |
Doc: fix typo in SECURITY LABEL synopsis.
One case missed its trailing "|".
Reported by Tim Needham.
Discussion: https://postgr.es/m/170833547220.3279712.700702770281879175@wrigleys.postgresql.org
-rw-r--r-- | doc/src/sgml/ref/security_label.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/security_label.sgml b/doc/src/sgml/ref/security_label.sgml index 5f96b7e1ded..e5e5fb483e9 100644 --- a/doc/src/sgml/ref/security_label.sgml +++ b/doc/src/sgml/ref/security_label.sgml @@ -29,7 +29,7 @@ SECURITY LABEL [ FOR <replaceable class="parameter">provider</replaceable> ] ON DATABASE <replaceable class="parameter">object_name</replaceable> | DOMAIN <replaceable class="parameter">object_name</replaceable> | EVENT TRIGGER <replaceable class="parameter">object_name</replaceable> | - FOREIGN TABLE <replaceable class="parameter">object_name</replaceable> + FOREIGN TABLE <replaceable class="parameter">object_name</replaceable> | FUNCTION <replaceable class="parameter">function_name</replaceable> [ ( [ [ <replaceable class="parameter">argmode</replaceable> ] [ <replaceable class="parameter">argname</replaceable> ] <replaceable class="parameter">argtype</replaceable> [, ...] ] ) ] | LARGE OBJECT <replaceable class="parameter">large_object_oid</replaceable> | MATERIALIZED VIEW <replaceable class="parameter">object_name</replaceable> | |