From: Bruce Momjian Date: Fri, 24 Mar 2000 03:57:06 +0000 (+0000) Subject: Move LOCK terms down. X-Git-Tag: REL7_0~342 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=be0204133ca413338c7d63d0971f17811668709a;p=postgresql Move LOCK terms down. --- diff --git a/doc/src/sgml/ref/lock.sgml b/doc/src/sgml/ref/lock.sgml index 6ff7b71810..175d6e0b25 100644 --- a/doc/src/sgml/ref/lock.sgml +++ b/doc/src/sgml/ref/lock.sgml @@ -1,5 +1,5 @@ @@ -33,67 +33,6 @@ LOCK [ TABLE ] name IN SHARE ROW EX 1999-06-09 - - Terms - - - - - EXCLUSIVE - - - Exclusive lock that prevents other locks from being granted. - - - - - - - - SHARE - - - Allows others to share lock. Prevents EXCLUSIVE locks. - - - - - - - - ACCESS - - - Locks table schema. - - - - - - - - ROW - - - Locks individual rows. - - - - - - - - Notes - - - If EXCLUSIVE or SHARE are not specified, EXCLUSIVE is assumed. - Locks exist for the duration of the transaction. - - - - - - Inputs @@ -285,6 +224,68 @@ ERROR <replaceable class="PARAMETER">name</replaceable>: Table does not exist. <title> Description + + Terms + + + + + EXCLUSIVE + + + Exclusive lock that prevents other locks from being granted. + + + + + + + + SHARE + + + Allows others to share lock. Prevents EXCLUSIVE locks. + + + + + + + + ACCESS + + + Locks table schema. + + + + + + + + ROW + + + Locks individual rows. + + + + + + + + Notes + + + If EXCLUSIVE or SHARE are not specified, EXCLUSIVE is assumed. + Locks exist for the duration of the transaction. + + + + + + + Postgres always uses the least restrictive lock mode whenever possible. LOCK TABLE