File tree 2 files changed +38
-0
lines changed
2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ ALTER PUBLICATION <replaceable class="PARAMETER">name</replaceable> WITH ( <repl
30
30
| PUBLISH DELETE | NOPUBLISH DELETE
31
31
32
32
ALTER PUBLICATION <replaceable class="PARAMETER">name</replaceable> OWNER TO { <replaceable>new_owner</replaceable> | CURRENT_USER | SESSION_USER }
33
+ ALTER PUBLICATION <replaceable class="PARAMETER">name</replaceable> RENAME TO <replaceable>new_name</replaceable>
33
34
ALTER PUBLICATION <replaceable class="PARAMETER">name</replaceable> ADD TABLE <replaceable class="PARAMETER">table_name</replaceable> [, ...]
34
35
ALTER PUBLICATION <replaceable class="PARAMETER">name</replaceable> SET TABLE <replaceable class="PARAMETER">table_name</replaceable> [, ...]
35
36
ALTER PUBLICATION <replaceable class="PARAMETER">name</replaceable> DROP TABLE <replaceable class="PARAMETER">table_name</replaceable> [, ...]
@@ -78,6 +79,24 @@ ALTER PUBLICATION <replaceable class="PARAMETER">name</replaceable> DROP TABLE <
78
79
</listitem>
79
80
</varlistentry>
80
81
82
+ <varlistentry>
83
+ <term><replaceable class="parameter">new_owner</replaceable></term>
84
+ <listitem>
85
+ <para>
86
+ The user name of the new owner of the publication.
87
+ </para>
88
+ </listitem>
89
+ </varlistentry>
90
+
91
+ <varlistentry>
92
+ <term><replaceable class="parameter">new_name</replaceable></term>
93
+ <listitem>
94
+ <para>
95
+ The new name for the publication.
96
+ </para>
97
+ </listitem>
98
+ </varlistentry>
99
+
81
100
<varlistentry>
82
101
<term><literal>PUBLISH INSERT</literal></term>
83
102
<term><literal>NOPUBLISH INSERT</literal></term>
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ ALTER SUBSCRIPTION <replaceable class="PARAMETER">name</replaceable> REFRESH PUB
35
35
COPY DATA | NOCOPY DATA
36
36
37
37
ALTER SUBSCRIPTION <replaceable class="PARAMETER">name</replaceable> OWNER TO { <replaceable>new_owner</replaceable> | CURRENT_USER | SESSION_USER }
38
+ ALTER SUBSCRIPTION <replaceable class="PARAMETER">name</replaceable> RENAME TO <replaceable>new_name</replaceable>
38
39
ALTER SUBSCRIPTION <replaceable class="PARAMETER">name</replaceable> CONNECTION '<replaceable>conninfo</replaceable>'
39
40
ALTER SUBSCRIPTION <replaceable class="PARAMETER">name</replaceable> ENABLE
40
41
ALTER SUBSCRIPTION <replaceable class="PARAMETER">name</replaceable> DISABLE
@@ -69,6 +70,24 @@ ALTER SUBSCRIPTION <replaceable class="PARAMETER">name</replaceable> DISABLE
69
70
</listitem>
70
71
</varlistentry>
71
72
73
+ <varlistentry>
74
+ <term><replaceable class="parameter">new_owner</replaceable></term>
75
+ <listitem>
76
+ <para>
77
+ The user name of the new owner of the subscription.
78
+ </para>
79
+ </listitem>
80
+ </varlistentry>
81
+
82
+ <varlistentry>
83
+ <term><replaceable class="parameter">new_name</replaceable></term>
84
+ <listitem>
85
+ <para>
86
+ The new name for the subscription.
87
+ </para>
88
+ </listitem>
89
+ </varlistentry>
90
+
72
91
<varlistentry>
73
92
<term><literal>CONNECTION '<replaceable class="parameter">conninfo</replaceable>'</literal></term>
74
93
<term><literal>SLOT NAME = <replaceable class="parameter">slot_name</replaceable></literal></term>
You can’t perform that action at this time.
0 commit comments