Use clearer woring for pg_locks columns, identifying which items are
authorBruce Momjian
Wed, 13 Jul 2011 15:41:39 +0000 (11:41 -0400)
committerBruce Momjian
Wed, 13 Jul 2011 15:42:17 +0000 (11:42 -0400)
related to lock objects.

doc/src/sgml/catalogs.sgml

index d4a1d3686f0c246a8c88e96a58772b1741ce3b81..c5851afefa85764d74690e70beb36e96f349778a 100644 (file)
       
        OID of the database in which the object exists, or
        zero if the object is a shared object, or
-       null if the object is a transaction ID
+       null if the lock object is on a transaction ID
       
      
      
       oid
       pg_class.oid
       
-       OID of the relation, or null if the object is not
-       a relation or part of a relation
+       OID of the relation, or null if the lock object is not
+       on a relation or part of a relation
       
      
      
       integer
       
       
-       Page number within the relation, or null if the object
-       is not a tuple or relation page
+       Page number within the relation, or null if the lock object
+       is not on a tuple or relation page
       
      
      
       smallint
       
       
-       Tuple number within the page, or null if the object is not a tuple
+       Tuple number within the page, or null if the lock object is not
+       on a tuple
       
      
      
       text
       
       
-       Virtual ID of a transaction, or null if the object is not a
-       virtual transaction ID
+       Virtual ID of a transaction lock, or null if the lock object is not
+       on a virtual transaction ID
       
      
      
       xid
       
       
-       ID of a transaction, or null if the object is not a transaction ID
+       ID of a transaction lock, or null if the lock object is not on a transaction ID
       
      
      
       pg_class.oid
       
        OID of the system catalog containing the object, or null if the
-       object is not a general database object
+       lock object is not on a general database object.
       
      
      
       any OID column
       
        OID of the object within its system catalog, or null if the
-       object is not a general database object.
+       lock object is not on a general database object.
        For advisory locks it is used to distinguish the two key
        spaces (1 for an int8 key, 2 for two int4 keys).
       
        For a table column, this is the column number (the
        classid and objid refer to the
        table itself).  For all other object types, this column is
-       zero.  Null if the object is not a general database object
+       zero.  Null if the lock object is not on a general database object.