Bruce Momjian <[EMAIL PROTECTED]> writes: > Tom Lane wrote: >> The only argument I can think of is that it allows applications to be >> sloppy about parsing a SQL script into individual commands before they >> send it. (I think initdb may be guilty of exactly that BTW...) At the >> same time you could argue that such sloppiness is inherently a Bad Idea.
> I thought the idea was that psql was going to split multiple -c commands > into separate PQexec() calls, so sloppy was OK, and if they want a > single transaction, add BEGIN/END to the string. No, psql isn't the point: we can certainly make its behavior match the backend's. What I'm wondering about is the effect on random PG-using applications: should we forbid them from sending multiple SQL commands per PQexec (or equivalent in other client library APIs)? Backwards compatibility says no, but you can make some decent arguments for forbidding it anyway. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 4: Have you searched our list archives? http://archives.postgresql.org