Supported Versions: Current (16) / 15 / 14 / 13 / 12
Development Versions: devel
Unsupported versions: 11 / 10 / 9.6 / 9.5 / 9.4 / 9.3 / 9.2 / 9.1 / 9.0 / 8.4 / 8.3 / 8.2 / 8.1 / 8.0 / 7.4
This documentation is for an unsupported version of PostgreSQL.
You may want to view the same page for the current version, or one of the other supported versions listed above instead.

ALTER CONVERSION

Name

ALTER CONVERSION -- change the definition of a conversion

Synopsis

ALTER CONVERSION name RENAME TO newname

Description

ALTER CONVERSION changes the definition of a conversion. The only currently available functionality is to rename the conversion.

Parameters

name

The name (optionally schema-qualified) of an existing conversion.

newname

The new name of the conversion.

Examples

To rename the conversion iso_8859_1_to_utf_8 to latin1_to_unicode:

ALTER CONVERSION iso_8859_1_to_utf_8 RENAME TO latin1_to_unicode;

Compatibility

There is no ALTER CONVERSION statement in the SQL standard.