1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>ALTER OPERATOR CLASS</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<link rev="made" href="pgsql-docs@postgresql.org">
<meta name="generator" content="DocBook XSL Stylesheets V1.70.0">
<link rel="start" href="index.html" title="PostgreSQL 8.1.4 Documentation">
<link rel="up" href="sql-commands.html" title="SQL Commands">
<link rel="prev" href="sql-alteroperator.html" title="ALTER OPERATOR">
<link rel="next" href="sql-alterrole.html" title="ALTER ROLE">
<link rel="copyright" href="ln-legalnotice.html" title="Legal Notice">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en">
<a name="sql-alteropclass"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2>Name</h2>
<p>ALTER OPERATOR CLASS — change the definition of an operator class</p>
</div>
<a name="id743584"></a><div class="refsynopsisdiv">
<h2>Synopsis</h2>
<pre class="synopsis">ALTER OPERATOR CLASS <em class="replaceable"><code>name</code></em> USING <em class="replaceable"><code>index_method</code></em> RENAME TO <em class="replaceable"><code>newname</code></em>
ALTER OPERATOR CLASS <em class="replaceable"><code>name</code></em> USING <em class="replaceable"><code>index_method</code></em> OWNER TO <em class="replaceable"><code>newowner</code></em></pre>
</div>
<div class="refsect1" lang="en">
<a name="id743632"></a><h2>Description</h2>
<p> <code class="command">ALTER OPERATOR CLASS</code> changes the definition of
an operator class.
</p>
<p> You must own the operator class to use <code class="command">ALTER OPERATOR CLASS</code>.
To alter the owner, you must also be a direct or indirect member of the new
owning role, and that role must have <code class="literal">CREATE</code> privilege on
the operator class's schema. (These restrictions enforce that altering the
owner doesn't do anything you couldn't do by dropping and recreating the
operator class. However, a superuser can alter ownership of any operator
class anyway.)
</p>
</div>
<div class="refsect1" lang="en">
<a name="id743669"></a><h2>Parameters</h2>
<div class="variablelist"><dl>
<dt><span class="term"><em class="replaceable"><code>name</code></em></span></dt>
<dd><p> The name (optionally schema-qualified) of an existing operator
class.
</p></dd>
<dt><span class="term"><em class="replaceable"><code>index_method</code></em></span></dt>
<dd><p> The name of the index method this operator class is for.
</p></dd>
<dt><span class="term"><em class="replaceable"><code>newname</code></em></span></dt>
<dd><p> The new name of the operator class.
</p></dd>
<dt><span class="term"><em class="replaceable"><code>newowner</code></em></span></dt>
<dd><p> The new owner of the operator class.
</p></dd>
</dl></div>
</div>
<div class="refsect1" lang="en">
<a name="id743724"></a><h2>Compatibility</h2>
<p> There is no <code class="command">ALTER OPERATOR CLASS</code> statement in
the SQL standard.
</p>
</div>
<div class="refsect1" lang="en">
<a name="id743738"></a><h2>See Also</h2>
<span class="simplelist"><a href="sql-createopclass.html">CREATE OPERATOR CLASS</a>, <a href="sql-dropopclass.html">DROP OPERATOR CLASS</a></span>
</div>
</div></body>
</html>
|