Most of the synopsis areas for DROP commands use "name" as the
authorBruce Momjian
Tue, 24 Jun 2003 23:29:25 +0000 (23:29 +0000)
committerBruce Momjian
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 @@
-
+
 
 
  
@@ -13,7 +13,7 @@
 
  
 
-CREATE [DEFAULT] CONVERSION conversion_name
+CREATE [DEFAULT] CONVERSION name
     FOR source_encoding TO dest_encoding FROM funcname
 
  
@@ -55,7 +55,7 @@ CREATE [DEFAULT] CONVERSION conversion_name
     
 
     
-     conversion_name
+     name
 
      
       
index b6086ffff39c8646bfcbe43e626a04af4c3b1e4b..4185a4158c2e6c73def56de13bae42cc01079132 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -16,7 +16,7 @@ PostgreSQL documentation
 
  
 
-DROP INDEX index_name [, ...] [ CASCADE | RESTRICT ]
+DROP INDEX name [, ...] [ CASCADE | RESTRICT ]
 
  
 
@@ -35,7 +35,7 @@ DROP INDEX index_name [, ...] [ CAS
 
   
    
-    index_name
+    name
     
      
       The name (optionally schema-qualified) of an index to remove.
@@ -78,11 +78,11 @@ DROP INDEX index_name [, ...] [ CAS
    
 
    
-    ERROR: index "index_name" does not exist
+    ERROR: index "name" does not exist
     
      
       This message is returned if 
-      class="PARAMETER">index_name is not an existing
+      class="PARAMETER">name is not an existing
       index.