Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0af5047

Browse files
committed
Remove excess semicolon in MERGE docs
Author: Euler Taveira <[email protected]> Discussion: https://postgr.es/m/[email protected]
1 parent c6dc6a0 commit 0af5047

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/sgml/ref/merge.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ ON s.winename = w.winename
596596
WHEN NOT MATCHED AND s.stock_delta > 0 THEN
597597
INSERT VALUES(s.winename, s.stock_delta)
598598
WHEN MATCHED AND w.stock + s.stock_delta > 0 THEN
599-
UPDATE SET stock = w.stock + s.stock_delta;
599+
UPDATE SET stock = w.stock + s.stock_delta
600600
WHEN MATCHED THEN
601601
DELETE;
602602
</programlisting>

0 commit comments

Comments
 (0)