Re: Minor typo in 13.3.5. Advisory Locks

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Daniel Gustafsson <daniel(at)yesql(dot)se>
Cc: zacharymschultz(at)gmail(dot)com, pgsql-docs(at)lists(dot)postgresql(dot)org
Subject: Re: Minor typo in 13.3.5. Advisory Locks
Date: 2023-03-31 12:35:55
Message-ID: 387586.1680266155@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

Daniel Gustafsson <daniel(at)yesql(dot)se> writes:
> Reading this section I agree that the mix of ok/danger in the same example can
> be tad misleading though. Something like the attached is what I would prefer
> as a reader.

I think in your rewrite, "this query" is dangling a bit because there's
several sentences more before the query actually appears. I suggest
ordering things more like:

expressions are evaluated. For example,
this query is dangerous because the
<literal>LIMIT</literal> is not guaranteed to be applied before the locking
function is executed:
<screen>
SELECT pg_advisory_lock(id) FROM foo WHERE id &gt; 12345 LIMIT 100; -- danger!
</screen>
This might cause some locks to be acquired
that the application was not expecting, and hence would fail to
...
On the other hand, these queries are safe:
<screen>
SELECT pg_advisory_lock(id) FROM foo WHERE id = 12345; -- ok
...

Separately from that: now that I look at this example, it's really
quite safe for any plausible plan shape. It used to be dangerous if
you had an ORDER BY, but there's no ORDER BY, and even if there were
we fixed that in 9118d03a8. Do we want to choose another example, and
if so what? The "not guaranteed" wording isn't really wrong, but an
example that doesn't do what we're saying it does isn't good either.

regards, tom lane

In response to

Responses

Browse pgsql-docs by date

  From Date Subject
Next Message Daniel Gustafsson 2023-03-31 20:43:38 Re: Minor typo in 13.3.5. Advisory Locks
Previous Message Daniel Gustafsson 2023-03-31 08:25:24 Re: Minor typo in 13.3.5. Advisory Locks