Make the SQL command synopses appear less random.
authorPeter Eisentraut
Mon, 22 Sep 2003 00:16:58 +0000 (00:16 +0000)
committerPeter Eisentraut
Mon, 22 Sep 2003 00:16:58 +0000 (00:16 +0000)
36 files changed:
doc/src/sgml/ref/alter_database.sgml
doc/src/sgml/ref/alter_domain.sgml
doc/src/sgml/ref/alter_sequence.sgml
doc/src/sgml/ref/alter_table.sgml
doc/src/sgml/ref/alter_trigger.sgml
doc/src/sgml/ref/alter_user.sgml
doc/src/sgml/ref/close.sgml
doc/src/sgml/ref/copy.sgml
doc/src/sgml/ref/create_cast.sgml
doc/src/sgml/ref/create_constraint.sgml
doc/src/sgml/ref/create_conversion.sgml
doc/src/sgml/ref/create_domain.sgml
doc/src/sgml/ref/create_index.sgml
doc/src/sgml/ref/create_language.sgml
doc/src/sgml/ref/create_opclass.sgml
doc/src/sgml/ref/create_operator.sgml
doc/src/sgml/ref/create_sequence.sgml
doc/src/sgml/ref/create_trigger.sgml
doc/src/sgml/ref/create_type.sgml
doc/src/sgml/ref/create_user.sgml
doc/src/sgml/ref/declare.sgml
doc/src/sgml/ref/drop_aggregate.sgml
doc/src/sgml/ref/drop_cast.sgml
doc/src/sgml/ref/drop_conversion.sgml
doc/src/sgml/ref/drop_domain.sgml
doc/src/sgml/ref/drop_function.sgml
doc/src/sgml/ref/drop_language.sgml
doc/src/sgml/ref/drop_opclass.sgml
doc/src/sgml/ref/drop_operator.sgml
doc/src/sgml/ref/drop_type.sgml
doc/src/sgml/ref/fetch.sgml
doc/src/sgml/ref/move.sgml
doc/src/sgml/ref/reset.sgml
doc/src/sgml/ref/set.sgml
doc/src/sgml/ref/set_constraints.sgml
doc/src/sgml/ref/show.sgml

index cdc5e7f13e3203fb258994d6daeca997325fa4c8..fe59392ff1aaf2f2d033fcf2823d7e0802b8b40c 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -20,8 +20,8 @@ PostgreSQL documentation
 
  
 
-ALTER DATABASE name SET variable { TO | = } { value | DEFAULT }
-ALTER DATABASE name RESET variable
+ALTER DATABASE name SET parameter { TO | = } { value | DEFAULT }
+ALTER DATABASE name RESET parameter
 
 ALTER DATABASE name RENAME TO newname
 
@@ -70,12 +70,12 @@ ALTER DATABASE name RENAME TO 
      
 
      
-      variable
+      parameter
       value
       
        
         Set the session default for this database of the specified
-        configuration variable to the given value.  If
+        configuration parameter to the given value.  If
         value is DEFAULT
         or, equivalently, RESET is used, the
         database-specific variable setting is removed and the system-wide
@@ -86,7 +86,7 @@ ALTER DATABASE name RENAME TO 
 
        
         See  and 
-        for more information about allowed variable names
+        for more information about allowed parameter names
         and values.
        
       
index 09e3db3ad8b367f3de98ea0d262c2391ed1d1e52..dc5edc2f32bbd843a51c7517d71a5dcb486f887e 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -24,15 +24,15 @@ PostgreSQL documentation
 
  
   
-ALTER DOMAIN domain
-    { SET DEFAULT value | DROP DEFAULT }
-ALTER DOMAIN domain
+ALTER DOMAIN name
+    { SET DEFAULT expression | DROP DEFAULT }
+ALTER DOMAIN name
     { SET | DROP } NOT NULL
-ALTER DOMAIN domain
+ALTER DOMAIN name
     ADD domain_constraint
-ALTER DOMAIN domain
+ALTER DOMAIN name
     DROP CONSTRAINT constraint_name [ RESTRICT | CASCADE ]
-ALTER DOMAIN domain
+ALTER DOMAIN name
     OWNER TO new_owner 
   
  
@@ -111,7 +111,7 @@ ALTER DOMAIN domain
    
     
      
-       domain 
+      name
       
        
    The name (possibly schema-qualified) of an existing domain to
@@ -121,7 +121,7 @@ ALTER DOMAIN domain
      
 
      
-       domain_constraint 
+      domain_constraint
       
        
    New domain constraint for the domain.
@@ -130,7 +130,7 @@ ALTER DOMAIN domain
      
 
      
-       constraint_name 
+      constraint_name
       
        
    Name of an existing constraint to drop.
index f4b114da4bdbcacf45285192ca906d2dfd1ddc34..421ad0fc0ddddac5c7c212ae80901024040d6328 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -24,7 +24,7 @@ PostgreSQL documentation
 
  
   
-ALTER SEQUENCE seqname [ INCREMENT [ BY ] increment ]
+ALTER SEQUENCE name [ INCREMENT [ BY ] increment ]
     [ MINVALUE minvalue | NO MINVALUE ] [ MAXVALUE maxvalue | NO MAXVALUE ]
     [ RESTART [ WITH ] start ] [ CACHE cache ] [ [ NO ] CYCLE ]
   
@@ -46,7 +46,7 @@ ALTER SEQUENCE seqname [ INCREMENT
    
     
      
-      seqname
+      name
       
        
    The name (optionally schema-qualified) of a sequence to be altered.
index 87d1a645775c7ee8a273e81e24056482fc78ec17..cf3035e9cff362c8b4be5651801e1a6a92160b6c 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -20,33 +20,33 @@ PostgreSQL documentation
 
  
 
-ALTER TABLE [ ONLY ] table [ * ]
+ALTER TABLE [ ONLY ] name [ * ]
     ADD [ COLUMN ] column type [ column_constraint [ ... ] ]
-ALTER TABLE [ ONLY ] table [ * ]
+ALTER TABLE [ ONLY ] name [ * ]
     DROP [ COLUMN ] column [ RESTRICT | CASCADE ]
-ALTER TABLE [ ONLY ] table [ * ]
-    ALTER [ COLUMN ] column { SET DEFAULT value | DROP DEFAULT }
-ALTER TABLE [ ONLY ] table [ * ]
+ALTER TABLE [ ONLY ] name [ * ]
+    ALTER [ COLUMN ] column { SET DEFAULT expression | DROP DEFAULT }
+ALTER TABLE [ ONLY ] name [ * ]
     ALTER [ COLUMN ] column { SET | DROP } NOT NULL
-ALTER TABLE [ ONLY ] table [ * ]
+ALTER TABLE [ ONLY ] name [ * ]
     ALTER [ COLUMN ] column SET STATISTICS integer
-ALTER TABLE [ ONLY ] table [ * ]
+ALTER TABLE [ ONLY ] name [ * ]
     ALTER [ COLUMN ] column SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN }
-ALTER TABLE [ ONLY ] table [ * ]
+ALTER TABLE [ ONLY ] name [ * ]
     SET WITHOUT OIDS
-ALTER TABLE [ ONLY ] table [ * ]
+ALTER TABLE [ ONLY ] name [ * ]
     RENAME [ COLUMN ] column TO 
     class="PARAMETER">new_column
-ALTER TABLE table
-    RENAME TO new_table
-ALTER TABLE [ ONLY ] table [ * ]
+ALTER TABLE name
+    RENAME TO new_name
+ALTER TABLE [ ONLY ] name [ * ]
     ADD table_constraint
-ALTER TABLE [ ONLY ] table [ * ]
+ALTER TABLE [ ONLY ] name [ * ]
     DROP CONSTRAINT constraint_name [ RESTRICT | CASCADE ]
-ALTER TABLE table
-    OWNER TO new_owner 
-ALTER TABLE table
-   CLUSTER ON index_name
+ALTER TABLE name
+    OWNER TO new_owner
+ALTER TABLE name
+    CLUSTER ON index_name
 
  
 
@@ -220,7 +220,7 @@ ALTER TABLE table
     
 
      
-      table
+      name
       
        
    The name (possibly schema-qualified) of an existing table to
@@ -264,7 +264,7 @@ ALTER TABLE table
      
 
      
-      new_table
+      new_name
       
        
    New name for the table.
index ee7afa87d89d3239eae1836aaacc88e32769957a..faed13c2e164ee1e0a559031e025de68ac52b748 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -20,8 +20,7 @@ PostgreSQL documentation
 
  
 
-ALTER TRIGGER trigger ON table
-    RENAME TO newname
+ALTER TRIGGER name ON table RENAME TO newname
 
  
 
@@ -45,7 +44,7 @@ ALTER TRIGGER trigger ON 
 
   
    
-    trigger
+    name
     
      
       The name of an existing trigger to alter.
index 3db6df00528950a3967bad1fa2e099f63ddbddb3..bfa0636c58115743c0c7a3709dd205b98f58e706 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -20,7 +20,7 @@ PostgreSQL documentation
 
  
 
-ALTER USER username [ [ WITH ] option [ ... ] ]
+ALTER USER name [ [ WITH ] option [ ... ] ]
 
 where option can be:
 
@@ -29,10 +29,10 @@ where option can be:
     | CREATEUSER | NOCREATEUSER 
     | VALID UNTIL 'abstime'
 
-ALTER USER username RENAME TO newname
+ALTER USER name RENAME TO newname
 
-ALTER USER username SET variable { TO | = } { value | DEFAULT }
-ALTER USER username RESET variable
+ALTER USER name SET parameter { TO | = } { value | DEFAULT }
+ALTER USER name RESET parameter
 
  
 
@@ -75,7 +75,7 @@ ALTER USER username RESET 
 
     
      
-      username
+      name
       
        
    The name of the user whose attributes are to be altered.
@@ -152,12 +152,12 @@ ALTER USER username RESET 
      
 
      
-      variable
+      parameter
       value
       
        
         Set this user's session default for the specified configuration
-        variable to the given value.  If
+        parameter to the given value.  If
         value is DEFAULT
         or, equivalently, RESET is used, the
         user-specific variable setting is removed and the user will
@@ -166,9 +166,9 @@ ALTER USER username RESET 
        
 
        
-        See  and  linkend="runtime-config">
-        for more information about allowed variable names
-        and values.
+        See  and 
+        linkend="runtime-config"> for more information about allowed
+        parameter names and values.
        
       
      
index c3ea5ab8cfee9ae26ed245666e0591e7ecb85208..b958b6a62d447f7d53c91040500aff186e46d6f1 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -20,7 +20,7 @@ PostgreSQL documentation
 
  
 
-CLOSE cursor
+CLOSE name
 
  
 
@@ -51,7 +51,7 @@ CLOSE cursor
 
   
    
-    cursor
+    name
     
      
       The name of an open cursor to close.
index 5df52ca36b77e09902e6240c2d8e1d76f3c42746..1c87091dff18b4a7eb2407885be49a766322c293 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -11,7 +11,7 @@ PostgreSQL documentation
 
  
   COPY
-  copy data between files and tables
+  copy data between a file and a table
  
 
  
@@ -20,7 +20,7 @@ PostgreSQL documentation
 
  
 
-COPY table [ ( column [, ...] ) ]
+COPY tablename [ ( column [, ...] ) ]
     FROM { 'filename' | STDIN }
     [ [ WITH ] 
           [ BINARY ] 
@@ -28,7 +28,7 @@ COPY table [ ( 
           [ DELIMITER [ AS ] 'delimiter' ]
           [ NULL [ AS ] 'null string' ] ]
 
-COPY table [ ( column [, ...] ) ]
+COPY tablename [ ( column [, ...] ) ]
     TO { 'filename' | STDOUT }
     [ [ WITH ] 
           [ BINARY ]
@@ -74,7 +74,7 @@ COPY table [ ( 
 
   
    
-    table
+    tablename
     
      
       The name (possibly schema-qualified) of an existing table.
@@ -571,12 +571,12 @@ ZW      ZIMBABWE
    still supported:
 
 
-COPY [ BINARY ] table [ WITH OIDS ]
+COPY [ BINARY ] tablename [ WITH OIDS ]
     FROM { 'filename' | STDIN }
     [ [USING] DELIMITERS 'delimiter' ]
     [ WITH NULL AS 'null string' ]
 
-COPY [ BINARY ] table [ WITH OIDS ]
+COPY [ BINARY ] tablename [ WITH OIDS ]
     TO { 'filename' | STDOUT }
     [ [USING] DELIMITERS 'delimiter' ]
     [ WITH NULL AS 'null string' ]
index 08f48fea1dc36b9938c68f6fead19d93a29e3ede..6ee06ac4e9be5bd8d85567cb9afdeabf4976cef4 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
 
  
@@ -8,7 +8,7 @@
 
  
   CREATE CAST
-  define a user-defined cast
+  define a new cast
  
 
  
index d48b3eea952402bc6635581ba99fa1d4cbf0a039..842c5436f274e140967d179ad1bd636bac899b5d 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -22,8 +22,8 @@ PostgreSQL documentation
 
 CREATE CONSTRAINT TRIGGER name
     AFTER events ON
-    table constraint attributes
-    FOR EACH ROW EXECUTE PROCEDURE func ( args )
+    tablename constraint attributes
+    FOR EACH ROW EXECUTE PROCEDURE funcname ( args )
 
  
 
@@ -62,7 +62,7 @@ CREATE CONSTRAINT TRIGGER name
      
 
      
-      table
+      tablename
       
        
    The name (possibly schema-qualified) of the table in which
@@ -90,7 +90,7 @@ CREATE CONSTRAINT TRIGGER name
      
 
      
-      func(args)
+      funcname(args)
       
        
    The function to call as part of the trigger processing.
index 441b80ef76c4d1c65f5d57596d662a81bcd8ee3b..cea5a2fa9e135964b89c2965bfbacc76dd1aa39d 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
 
  
@@ -8,7 +8,7 @@
 
  
   CREATE CONVERSION
-  define a user-defined conversion
+  define a new conversion
  
 
  
index 7a71e4a5982a6da1ed70f3a167fcedbd263fe477..2da02173b0bca433427ff1aa54479683ba9448fc 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -20,8 +20,8 @@ PostgreSQL documentation
 
  
 
-CREATE DOMAIN domainname [AS] data_type
-    [ DEFAULT default_expr ]
+CREATE DOMAIN name [AS] data_type
+    [ DEFAULT expression ]
     [ constraint [ ... ] ]
 
 where constraint is:
@@ -60,7 +60,7 @@ where constraint is:
 
     
      
-      domainname
+      name
       
        
    The name (optionally schema-qualified) of a domain to be created.
@@ -79,7 +79,7 @@ where constraint is:
      
 
      
-      DEFAULT default_expr
+      DEFAULT expression
 
       
        
index 28140997f5a9bddf3e87794f6118fad39659b84a..f2f97fd5e8fcbb137dcecaaf08f7ef485ef3fdb2 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -20,7 +20,7 @@ PostgreSQL documentation
 
  
 
-CREATE [ UNIQUE ] INDEX index_name ON table [ USING method ]
+CREATE [ UNIQUE ] INDEX name ON table [ USING method ]
     ( { column | ( expression ) } [ opclass ] [, ...] )
     [ WHERE predicate ]
 
@@ -113,7 +113,7 @@ CREATE [ UNIQUE ] INDEX index_name
      
 
      
-      index_name
+      name
       
        
    The name of the index to be created.  No schema name can be included
index 1629ba77e4763c8169923bc997a270e660a5de55..c938eece4454f2fd9e0033f7aea5b266ffa499cb 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -20,7 +20,7 @@ PostgreSQL documentation
 
  
 
-CREATE [ TRUSTED ] [ PROCEDURAL ] LANGUAGE langname
+CREATE [ TRUSTED ] [ PROCEDURAL ] LANGUAGE name
     HANDLER call_handler [ VALIDATOR valfunction ]
 
  
@@ -83,7 +83,7 @@ CREATE [ TRUSTED ] [ PROCEDURAL ] LANGUAGE langna
     
 
     
-     langname
+     name
 
      
       
index 2ecf1cd4f291adc1c820d8e8e1f5d3c55870847d..d63f68d6d33531df4f114040aa5e94b49d2ac02f 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -11,7 +11,7 @@ PostgreSQL documentation
 
  
   CREATE OPERATOR CLASS
-  define a new operator class for indexes
+  define a new operator class
  
 
  
@@ -22,7 +22,7 @@ PostgreSQL documentation
 
 CREATE OPERATOR CLASS name [ DEFAULT ] FOR TYPE data_type USING index_method AS
   {  OPERATOR strategy_number operator_name [ ( op_type, op_type ) ] [ RECHECK ]
-   | FUNCTION support_number func_name ( argument_types )
+   | FUNCTION support_number funcname ( argument_type [, ...] )
    | STORAGE storage_type
   } [, ... ]
 
@@ -167,7 +167,7 @@ CREATE OPERATOR CLASS name [ DEFAUL
    
 
    
-    func_name
+    funcname
     
      
       The name (optionally schema-qualified) of a function that is an
index d806bdd9d6d66e1c166a51af3d033858b25a6a24..c64d8712f1f4fdda2398645f94042f591f476255 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -21,7 +21,7 @@ PostgreSQL documentation
  
 
 CREATE OPERATOR name (
-    PROCEDURE = func_name
+    PROCEDURE = funcname
     [, LEFTARG = lefttype ] [, RIGHTARG = righttype ]
     [, COMMUTATOR = com_op ] [, NEGATOR = neg_op ]
     [, RESTRICT = res_proc ] [, JOIN = join_proc ]
@@ -89,7 +89,7 @@ CREATE OPERATOR name (
   
 
   
-   The func_name
+   The funcname
    procedure must have been previously defined using CREATE
    FUNCTION and must be defined to accept the correct number
    of arguments (either one or two) of the indicated types.
@@ -121,7 +121,7 @@ CREATE OPERATOR name (
      
 
      
-      func_name
+      funcname
       
        
    The function used to implement this operator.
index dc4b2e776b912e7917ca9851783de7d3dd4e7fc1..49422063e23325f45cfd2d638240382d1ca64bc7 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -20,7 +20,7 @@ PostgreSQL documentation
 
  
 
-CREATE [ TEMPORARY | TEMP ] SEQUENCE seqname [ INCREMENT [ BY ] increment ]
+CREATE [ TEMPORARY | TEMP ] SEQUENCE name [ INCREMENT [ BY ] increment ]
     [ MINVALUE minvalue | NO MINVALUE ] [ MAXVALUE maxvalue | NO MAXVALUE ]
     [ START [ WITH ] start ] [ CACHE cache ] [ [ NO ] CYCLE ]
 
@@ -33,7 +33,7 @@ CREATE [ TEMPORARY | TEMP ] SEQUENCE seqname
    CREATE SEQUENCE creates a new sequence number
    generator.  This involves creating and initializing a new special
    single-row table with the name 
-   class="parameter">seqname.  The generator will be
+   class="parameter">name.  The generator will be
    owned by the user issuing the command.
   
 
@@ -59,7 +59,7 @@ CREATE [ TEMPORARY | TEMP ] SEQUENCE seqname
    Although you cannot update a sequence directly, you can use a query like
 
 
-SELECT * FROM seqname;
+SELECT * FROM name;
 
 
    to examine the parameters and current state of a sequence.  In particular,
@@ -88,7 +88,7 @@ SELECT * FROM seqname;
    
 
    
-    seqname
+    name
     
      
       The name (optionally schema-qualified) of the sequence to be created.
index af75dd9841e5085c5b5649e9d8b5d015976690ae..7bbc7d9927619cd396b81ca6bd87c8f320af69e8 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -22,7 +22,7 @@ PostgreSQL documentation
 
 CREATE TRIGGER name { BEFORE | AFTER } { event [ OR ... ] }
     ON table [ FOR [ EACH ] { ROW | STATEMENT } ]
-    EXECUTE PROCEDURE func ( arguments )
+    EXECUTE PROCEDURE funcname ( arguments )
 
  
  
index f287c12b4b5ebe77f0c272e9a90431b955ba20f2..00a158ce51dc4ce47fc25127b238269331010e65 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -20,10 +20,10 @@ PostgreSQL documentation
 
  
 
-CREATE TYPE typename AS
+CREATE TYPE name AS
     ( attribute_name data_type [, ... ] )
 
-CREATE TYPE typename (
+CREATE TYPE name (
     INPUT = input_function,
     OUTPUT = output_function
     [ , RECEIVE = receive_function ]
@@ -274,7 +274,7 @@ CREATE TYPE typename (
 
   
    
-    typename
+    name
     
      
       The name (optionally schema-qualified) of a type to be created.
index 209d67d6ee4a877d7b2421bebfc0afa6e4af9086..a9321feada8a5f184b8bb918accb53c4014d1789 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -20,7 +20,7 @@ PostgreSQL documentation
 
  
 
-CREATE USER username [ [ WITH ] option [ ... ] ]
+CREATE USER name [ [ WITH ] option [ ... ] ]
 
 where option can be:
     
@@ -51,7 +51,7 @@ where option can be:
 
     
      
-      username
+      name
       
        
    The name of the user.
index a1884b5ee0bd512ff42208019142274ccd049770..cda20fd65efd737263f8d84f5f24968be56ef7bc 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -20,7 +20,7 @@ PostgreSQL documentation
 
  
 
-DECLARE cursorname [ BINARY ] [ INSENSITIVE ] [ [ NO ] SCROLL ]
+DECLARE name [ BINARY ] [ INSENSITIVE ] [ [ NO ] SCROLL ]
     CURSOR [ { WITH | WITHOUT } HOLD ] FOR query
     [ FOR { READ ONLY | UPDATE [ OF column [, ...] ] } ]
 
@@ -83,7 +83,7 @@ DECLARE cursorname [ BINARY ] [ INS
 
   
    
-    cursorname
+    name
     
      
       The name of the cursor to be created.
index 4ec2d9de1b569a10ec2a2de00fe84fd5e661606b..8b3bb91e88cc54079e0ca67f0f814f210d5596aa 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -11,7 +11,7 @@ PostgreSQL documentation
 
  
   DROP AGGREGATE
-  remove a user-defined aggregate function
+  remove an aggregate function
  
 
  
index 0c352ad2bccfcc3a403c5e294796250863f8e865..16cdedae136d4297d9701f1888aae392650ab6fe 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
 
  
@@ -8,7 +8,7 @@
 
  
   DROP CAST
-  remove a user-defined cast
+  remove a cast
  
 
  
index 9cb416b2d501edb4ed4ae72bae0902c5b5615484..07018c56f53e518ff1396d27c6ef4c9655e0789b 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
 
  
@@ -8,7 +8,7 @@
 
  
   DROP CONVERSION
-  remove a user-defined conversion
+  remove a conversion
  
 
  
@@ -17,7 +17,7 @@
 
  
 
-DROP CONVERSION conversion_name [ CASCADE | RESTRICT ]
+DROP CONVERSION name [ CASCADE | RESTRICT ]
 
  
   
@@ -35,7 +35,7 @@ DROP CONVERSION conversion_name [ CASCADE | RESTRICT
 
    
     
-     conversion_name
+     name
 
      
       
index e108bfcbbc7599d2570a43167c52e2fca5ed4406..e87f7e2752a31517d987abc4b6e940fa32334796 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -20,7 +20,7 @@ PostgreSQL documentation
 
  
 
-DROP DOMAIN domainname [, ...]  [ CASCADE | RESTRICT ]
+DROP DOMAIN name [, ...]  [ CASCADE | RESTRICT ]
 
  
 
@@ -38,7 +38,7 @@ DROP DOMAIN domainname [, ...]  [ C
 
   
    
-    domainname
+    name
     
      
       The name (optionally schema-qualified) of an existing domain.
index ec68f162c29323d4ff93c4cf3c07935d0e044885..935d65b4a271886815e65ce29ed6d30302ec6537 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -11,7 +11,7 @@ PostgreSQL documentation
 
  
   DROP FUNCTION
-  remove a user-defined function
+  remove a function
  
 
  
index 4a997ac715d5c79022afa7ce4f84f731f0352d1f..b78e8c6c560db43920c9f24facea16573de97e9c 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -11,7 +11,7 @@ PostgreSQL documentation
 
  
   DROP LANGUAGE
-  remove a user-defined procedural language
+  remove a procedural language
  
 
  
index 85f02cd473877e2dc9cd8ff9a9444a0dee12969c..bbfaf284bdfb300ad60e0a7c4e7ddfe4f28b9400 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -11,7 +11,7 @@ PostgreSQL documentation
 
  
   DROP OPERATOR CLASS
-  remove a user-defined operator class
+  remove an operator class
  
   
  
index 2b3267b336769c0653cf78e3c6cff3de81e90a2d..cb75b4e0896ee273e42678b1688cf977ecf0bd06 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -11,7 +11,7 @@ PostgreSQL documentation
 
  
   DROP OPERATOR
-  remove a user-defined operator
+  remove an operator
  
   
  
index c8aa06c73a13d9db1a2142412abed8657276a960..1c7edfca9797d9783c1dbf8eedeaaf91e06798bf 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -11,7 +11,7 @@ PostgreSQL documentation
 
  
   DROP TYPE
-  remove a user-defined data type
+  remove a data type
  
 
  
@@ -20,7 +20,7 @@ PostgreSQL documentation
 
  
 
-DROP TYPE typename [, ...] [ CASCADE | RESTRICT ]
+DROP TYPE name [, ...] [ CASCADE | RESTRICT ]
 
  
 
@@ -38,7 +38,7 @@ DROP TYPE typename [, ...] [ CASCAD
 
   
    
-    typename
+    name
     
      
       The name (optionally schema-qualified) of the data type to remove.
index 5f3639d4c7fd19040a7756ff5e38cf45ec8108b7..798fa5c068cdabebb666681f723b08643bc8c36e 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -20,7 +20,7 @@ PostgreSQL documentation
 
  
 
-FETCH [ direction { FROM | IN } ] cursor
+FETCH [ direction { FROM | IN } ] cursorname
 
 where direction can be empty or one of:
 
@@ -270,7 +270,7 @@ where direction can be empty or one
    
 
    
-    cursor
+    cursorname
     
      
       An open cursor's name.
index c13cdc9ead3d41e7eb0d0b800595f54cfb7c7165..5afaf06e84e36709b8bfd345d865cb6f492f7dbf 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -11,7 +11,7 @@ PostgreSQL documentation
 
  
   MOVE
-  reposition a cursor
+  position a cursor
  
 
  
@@ -20,7 +20,7 @@ PostgreSQL documentation
 
  
 
-MOVE [ direction { FROM | IN } ] cursor
+MOVE [ direction { FROM | IN } ] cursorname
 
  
 
@@ -30,7 +30,7 @@ MOVE [ direction { FROM | IN } ] 
   
    MOVE repositions a cursor without retrieving any data.
    MOVE works exactly like the FETCH
-   command, except it only repositions the cursor and does not return rows.
+   command, except it only positions the cursor and does not return rows.
   
 
   
index 6f8fc85883d5cd21e2cc7467a44e660b28ae3642..3a72d086ae989015b617c4846ae27e546c1786ad 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -20,9 +20,7 @@ PostgreSQL documentation
 
  
 
-RESET parameter
-
-
+RESET name
 RESET ALL
 
  
@@ -61,7 +59,7 @@ SET parameter TO DEFAULT
 
   
    
-    parameter
+    name
     
      
       The name of a run-time parameter. See 
index 1bdb3d0ebb40ff131aa82637f587f6707f47945e..16d91aca5c86b0ba36e00b7526be01b5958f03e1 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -20,7 +20,7 @@ PostgreSQL documentation
 
  
 
-SET [ SESSION | LOCAL ] variable { TO | = } { value | 'value' | DEFAULT }
+SET [ SESSION | LOCAL ] name { TO | = } { value | 'value' | DEFAULT }
 SET [ SESSION | LOCAL ] TIME ZONE { timezone | LOCAL | DEFAULT }
 
  
@@ -91,7 +91,7 @@ SET [ SESSION | LOCAL ] TIME ZONE { timezone
    
 
    
-    variable
+    name
     
      
       Name of a settable run-time parameter.  Available parameters are
index dda66538095bb03aa4992203d59bad25de7cee6d..4055bb944ffe50a0866377dc31dd2458ed78220e 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
  
   SET CONSTRAINTS
@@ -16,7 +16,7 @@
 
  
 
-SET CONSTRAINTS { ALL | constraint [, ...] } { DEFERRED | IMMEDIATE }
+SET CONSTRAINTS { ALL | name [, ...] } { DEFERRED | IMMEDIATE }
 
  
 
index 3acaead1eb846303d0ae3e471000966974987b9e..428831449c60d6ab636551f22e093880b6730e52 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -21,8 +21,6 @@ PostgreSQL documentation
  
 
 SHOW name
-
-
 SHOW ALL