@@ -600,7 +600,6 @@ WHERE id = (SELECT * FROM some_table LIMIT 1);
600600(306 rows)
601601 </programlisting>
602602 </para>
603- </listitem>
604603 <listitem>
605604 <para>
606605 <emphasis role="strong"><literal>id = ANY (select ...)</literal></emphasis>
@@ -646,20 +645,20 @@ WHERE id = any (SELECT * FROM some_table limit 4);
646645(110 rows)
647646 </programlisting>
648647 </para>
649- </listitem >
650- <listitem>
651- <para>
652- <emphasis role="strong"><literal>NestLoop</literal> involving
653- a partitioned table</emphasis>, which is omitted since it's
654- occasionally shown above.
655- </para>
656- </listitem>
657- </itemizedlist>
658- <para>
659- In case you're interested, you can read more about custom nodes at
660- Alexander Korotkov's
661- <ulink url="http://akorotkov.github.io/blog/2016/06/15/pg_pathman-runtime-append/">blog</ulink>.
662- </para>
648+ <itemizedlist spacing="compact" >
649+ <listitem>
650+ <para>
651+ <emphasis role="strong"><literal>NestLoop</literal> involving
652+ a partitioned table</emphasis>, which is omitted since it's
653+ occasionally shown above.
654+ </para>
655+ </listitem>
656+ </itemizedlist>
657+ <para>
658+ In case you're interested, you can read more about custom nodes at
659+ Alexander Korotkov's
660+ <ulink url="http://akorotkov.github.io/blog/2016/06/15/pg_pathman-runtime-append/">blog</ulink>.
661+ </para>
663662 </sect2>
664663 <sect2 id="examples">
665664 <title>Examples</title>
@@ -695,9 +694,9 @@ WHERE id = any (SELECT * FROM some_table limit 4);
695694 </para>
696695 <programlisting>
697696 SELECT * FROM pathman_concurrent_part_tasks;
698- userid | pid | dbid | relid | processed | status
697+ userid | pid | dbid | relid | processed | status
699698 --------+------+-------+-------+-----------+---------
700- dmitry | 7367 | 16384 | test | 472000 | working
699+ dmitry | 7367 | 16384 | test | 472000 | working
701700 (1 row)
702701 </programlisting>
703702 </listitem>
@@ -887,11 +886,11 @@ WHERE id = any (SELECT * FROM some_table limit 4);
887886 </para>
888887 <programlisting>
889888 SELECT * FROM journal WHERE dt >= '2015-06-01' AND dt < '2015-06-03';
890- id | dt | level | msg
889+ id | dt | level | msg
891890 --------+---------------------+-------+----------------------------------
892- 217441 | 2015-06-01 00:00:00 | 2 | 15053892d993ce19f580a128f87e3dbf
893- 217442 | 2015-06-01 00:01:00 | 1 | 3a7c46f18a952d62ce5418ac2056010c
894- 217443 | 2015-06-01 00:02:00 | 0 | 92c8de8f82faf0b139a3d99f2792311d
891+ 217441 | 2015-06-01 00:00:00 | 2 | 15053892d993ce19f580a128f87e3dbf
892+ 217442 | 2015-06-01 00:01:00 | 1 | 3a7c46f18a952d62ce5418ac2056010c
893+ 217443 | 2015-06-01 00:02:00 | 0 | 92c8de8f82faf0b139a3d99f2792311d
895894 ...
896895 (2880 rows)
897896