Change the definition of an extension that is registered in a Greenplum database.

Synopsis

  1. ALTER EXTENSION <name> UPDATE [ TO <new_version> ]
  2. ALTER EXTENSION <name> SET SCHEMA <new_schema>
  3. ALTER EXTENSION <name> ADD <member_object>
  4. ALTER EXTENSION <name> DROP <member_object>
  5. where <member_object> is:
  6. ACCESS METHOD <object_name> |
  7. AGGREGATE <aggregate_name> ( <aggregate_signature> ) |
  8. CAST (<source_type> AS <target_type>) |
  9. COLLATION <object_name> |
  10. CONVERSION <object_name> |
  11. DOMAIN <object_name> |
  12. EVENT TRIGGER <object_name> |
  13. FOREIGN DATA WRAPPER <object_name> |
  14. FOREIGN TABLE <object_name> |
  15. FUNCTION <function_name> ( [ [ <argmode> ] [ <argname> ] <argtype> [, ...] ] ) |
  16. MATERIALIZED VIEW <object_name> |
  17. OPERATOR <operator_name> (<left_type>, <right_type>) |
  18. OPERATOR CLASS <object_name> USING <index_method> |
  19. OPERATOR FAMILY <object_name> USING <index_method> |
  20. [ PROCEDURAL ] LANGUAGE <object_name> |
  21. SCHEMA <object_name> |
  22. SEQUENCE <object_name> |
  23. SERVER <object_name> |
  24. TABLE <object_name> |
  25. TEXT SEARCH CONFIGURATION <object_name> |
  26. TEXT SEARCH DICTIONARY <object_name> |
  27. TEXT SEARCH PARSER <object_name> |
  28. TEXT SEARCH TEMPLATE <object_name> |
  29. TRANSFORM FOR <type_name> LANGUAGE <lang_name> |
  30. TYPE <object_name> |
  31. VIEW <object_name>
  32. and <aggregate_signature> is:
  33. * |
  34. [ <argmode> ] [ <argname> ] <argtype> [ , ... ] |
  35. [ [ <argmode> ] [ <argname> ] <argtype> [ , ... ] ] ORDER BY [ <argmode> ] [ <argname> ] <argtype> [ , ... ]

Description

ALTER EXTENSION changes the definition of an installed extension. These are the subforms:

UPDATE

This form updates the extension to a newer version. The extension must supply a suitable update script (or series of scripts) that can modify the currently-installed version into the requested version.

SET SCHEMA

This form moves the extension member objects into another schema. The extension must be relocatable.

ADD member_object

This form adds an existing object to the extension. This is useful in extension update scripts. The added object is treated as a member of the extension. The object can only be dropped by dropping the extension.

DROP member_object

This form removes a member object from the extension. This is mainly useful in extension update scripts. The object is not dropped, only disassociated from the extension.

See Packaging Related Objects into an Extension for more information about these operations.

You must own the extension to use ALTER EXTENSION. The ADD and DROP forms also require ownership of the object that is being added or dropped.

Parameters

name

The name of an installed extension.

new_version

The new version of the extension. The new_version can be either an identifier or a string literal. If not specified, the command attempts to update to the default version in the extension control file.

new_schema

The new schema for the extension.

object_name

aggregate_name

function_name

operator_name

The name of an object to be added to or removed from the extension. Names of tables, aggregates, domains, foreign tables, functions, operators, operator classes, operator families, sequences, text search objects, types, and views can be schema-qualified.

source_type

The name of the source data type of the cast.

target_type

The name of the target data type of the cast.

argmode

The mode of a function or aggregate argument: IN, OUT, INOUT, or VARIADIC. The default is IN.

The command ignores the OUT arguments. Only the input arguments are required to determine the function identity. It is sufficient to list the IN, INOUT, and VARIADIC arguments.

argname

The name of a function or aggregate argument.

The command ignores argument names, since only the argument data types are required to determine the function identity.

argtype

The data type of a function or aggregate argument.

left_type

right_type

The data types of the operator’s arguments (optionally schema-qualified) . Specify NONE for the missing argument of a prefix or postfix operator.

PROCEDURAL

This is a noise word.

type_name

The name of the data type of the transform.

lang_name

The name of the language of the transform.

Examples

To update the hstore extension to version 2.0:

  1. ALTER EXTENSION hstore UPDATE TO '2.0';

To change the schema of the hstore extension to utils:

  1. ALTER EXTENSION hstore SET SCHEMA utils;

To add an existing function to the hstore extension:

  1. ALTER EXTENSION hstore ADD FUNCTION populate_record(anyelement, hstore);

Compatibility

ALTER EXTENSION is a Greenplum Database extension.

See Also

CREATE EXTENSION, DROP EXTENSION

Parent topic: SQL Commands