# HG changeset patch # User Oleksandr Gavenko # Date 1570689611 -10800 # Node ID 91e5280901681bc160f3e872b0cb2066a03a4c1a # Parent 0c07e8df092f254558274255dd02e0e3858ce435 Fixed typo. diff -r 0c07e8df092f -r 91e528090168 postgres.rst --- a/postgres.rst Tue Oct 08 21:19:29 2019 +0300 +++ b/postgres.rst Thu Oct 10 09:40:11 2019 +0300 @@ -465,7 +465,7 @@ As being MVCC Postgres doesn't delete or update existing rows. Row visibility is controled by transaction id (monotonous incremented number): ``xmin`` - first transaction that can see row, -``xmax`` - last transaction that can see row::: +``xmax`` - last transaction that can see row:: SELECT xmin, xmax, * FROM foo WHERE id < 5 ORDER BY id;