From a0a7d5dea2d4461a72d1d6a7f5b7dffa5ab72743 Mon Sep 17 00:00:00 2001 From: Andrew Gierth Date: Sat, 11 Apr 2020 08:04:57 +0100 Subject: [PATCH] doc: restore intentional typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commit ac8623760 "fixed" a typo in an example of what would happen in the event of a typo. Restore the original typo and add a comment about its intentionality. Backpatch to 12 where the error was introduced. Per report from irc user Nicolás Alvarez. --- doc/src/sgml/protocol.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/sgml/protocol.sgml b/doc/src/sgml/protocol.sgml index 8d8051b87e..15e8415482 100644 --- a/doc/src/sgml/protocol.sgml +++ b/doc/src/sgml/protocol.sgml @@ -811,7 +811,7 @@ BEGIN; INSERT INTO mytable VALUES(1); COMMIT; INSERT INTO mytable VALUES(2); -SELECT 1/0; +SELCT 1/0; then none of the statements would get run, resulting in the visible difference that the first INSERT is not committed.