]> granicus.if.org Git - postgresql/commitdiff
Most of the synopsis areas for DROP commands use "name" as the
authorBruce Momjian <bruce@momjian.us>
Tue, 24 Jun 2003 23:29:25 +0000 (23:29 +0000)
committerBruce Momjian <bruce@momjian.us>
Tue, 24 Jun 2003 23:29:25 +0000 (23:29 +0000)
identifier, while some areas do not.

The attached converts be below to "name":
conversion_name
index_name

The below have an existing, initdb supplied, entity named "name".  As
such, it could be confusing for the reader to see that identifier used
in the example.

domainname
typename

Rod Taylor

doc/src/sgml/ref/create_conversion.sgml
doc/src/sgml/ref/drop_index.sgml

index a8811968494070b63b2582a0a56f70ea44f75ff3..b7d73626d6766d001be359c87d519f750ca87c12 100644 (file)
@@ -1,4 +1,4 @@
-<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/create_conversion.sgml,v 1.8 2003/04/22 10:08:08 petere Exp $ -->
+<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/create_conversion.sgml,v 1.9 2003/06/24 23:29:25 momjian Exp $ -->
 
 <refentry id="SQL-CREATECONVERSION">
  <refmeta>
@@ -13,7 +13,7 @@
 
  <refsynopsisdiv>
 <synopsis>
-CREATE [DEFAULT] CONVERSION <replaceable>conversion_name</replaceable>
+CREATE [DEFAULT] CONVERSION <replaceable>name</replaceable>
     FOR <replaceable>source_encoding</replaceable> TO <replaceable>dest_encoding</replaceable> FROM <replaceable>funcname</replaceable>
 </synopsis>
  </refsynopsisdiv>
@@ -55,7 +55,7 @@ CREATE [DEFAULT] CONVERSION <replaceable>conversion_name</replaceable>
     </varlistentry>
 
     <varlistentry>
-     <term><replaceable>conversion_name</replaceable></term>
+     <term><replaceable>name</replaceable></term>
 
      <listitem>
       <para>
index b6086ffff39c8646bfcbe43e626a04af4c3b1e4b..4185a4158c2e6c73def56de13bae42cc01079132 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_index.sgml,v 1.17 2003/05/04 02:23:16 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_index.sgml,v 1.18 2003/06/24 23:29:25 momjian Exp $
 PostgreSQL documentation
 -->
 
@@ -16,7 +16,7 @@ PostgreSQL documentation
 
  <refsynopsisdiv>
 <synopsis>
-DROP INDEX <replaceable class="PARAMETER">index_name</replaceable> [, ...] [ CASCADE | RESTRICT ]
+DROP INDEX <replaceable class="PARAMETER">name</replaceable> [, ...] [ CASCADE | RESTRICT ]
 </synopsis>
  </refsynopsisdiv>
 
@@ -35,7 +35,7 @@ DROP INDEX <replaceable class="PARAMETER">index_name</replaceable> [, ...] [ CAS
 
   <variablelist>
    <varlistentry>
-    <term><replaceable class="PARAMETER">index_name</replaceable></term>
+    <term><replaceable class="PARAMETER">name</replaceable></term>
     <listitem>
      <para>
       The name (optionally schema-qualified) of an index to remove.
@@ -78,11 +78,11 @@ DROP INDEX <replaceable class="PARAMETER">index_name</replaceable> [, ...] [ CAS
    </varlistentry>
 
    <varlistentry>
-    <term><computeroutput>ERROR: index "<replaceable class="PARAMETER">index_name</replaceable>" does not exist</computeroutput></term>
+    <term><computeroutput>ERROR: index "<replaceable class="PARAMETER">name</replaceable>" does not exist</computeroutput></term>
     <listitem>
      <para>
       This message is returned if <replaceable
-      class="PARAMETER">index_name</replaceable> is not an existing
+      class="PARAMETER">name</replaceable> is not an existing
       index.
      </para>
     </listitem>