@@ -35,6 +35,8 @@ ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
3535 VALIDATE CONSTRAINT <replaceable class="PARAMETER">constraint_name</replaceable>
3636ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
3737 OWNER TO <replaceable class="PARAMETER">new_owner</replaceable>
38+ ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
39+ RENAME TO <replaceable class="PARAMETER">new_name</replaceable>
3840ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
3941 SET SCHEMA <replaceable class="PARAMETER">new_schema</replaceable>
4042</synopsis>
@@ -118,6 +120,15 @@ ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
118120 </listitem>
119121 </varlistentry>
120122
123+ <varlistentry>
124+ <term><literal>RENAME</literal></term>
125+ <listitem>
126+ <para>
127+ This form changes the name of the domain.
128+ </para>
129+ </listitem>
130+ </varlistentry>
131+
121132 <varlistentry>
122133 <term>SET SCHEMA</term>
123134 <listitem>
@@ -203,6 +214,15 @@ ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
203214 </listitem>
204215 </varlistentry>
205216
217+ <varlistentry>
218+ <term><replaceable class="PARAMETER">new_name</replaceable></term>
219+ <listitem>
220+ <para>
221+ The new name for the domain.
222+ </para>
223+ </listitem>
224+ </varlistentry>
225+
206226 <varlistentry>
207227 <term><replaceable class="PARAMETER">new_owner</replaceable></term>
208228 <listitem>
@@ -278,7 +298,7 @@ ALTER DOMAIN zipcode SET SCHEMA customers;
278298
279299 <para>
280300 <command>ALTER DOMAIN</command> conforms to the <acronym>SQL</acronym>
281- standard, except for the <literal>OWNER</>, <literal>SET SCHEMA</> and
301+ standard, except for the <literal>OWNER</>, <literal>RENAME</literal>, <literal> SET SCHEMA</>, and
282302 <literal>VALIDATE CONSTRAINT</> variants, which are
283303 <productname>PostgreSQL</productname> extensions. The <literal>NOT VALID</>
284304 clause of the <literal>ADD CONSTRAINT</> variant is also a