@@ -600,7 +600,6 @@ WHERE id = (SELECT * FROM some_table LIMIT 1);
600
600
(306 rows)
601
601
</programlisting>
602
602
</para>
603
- </listitem>
604
603
<listitem>
605
604
<para>
606
605
<emphasis role="strong"><literal>id = ANY (select ...)</literal></emphasis>
@@ -646,20 +645,20 @@ WHERE id = any (SELECT * FROM some_table limit 4);
646
645
(110 rows)
647
646
</programlisting>
648
647
</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>
663
662
</sect2>
664
663
<sect2 id="examples">
665
664
<title>Examples</title>
@@ -695,9 +694,9 @@ WHERE id = any (SELECT * FROM some_table limit 4);
695
694
</para>
696
695
<programlisting>
697
696
SELECT * FROM pathman_concurrent_part_tasks;
698
- userid | pid | dbid | relid | processed | status
697
+ userid | pid | dbid | relid | processed | status
699
698
--------+------+-------+-------+-----------+---------
700
- dmitry | 7367 | 16384 | test | 472000 | working
699
+ dmitry | 7367 | 16384 | test | 472000 | working
701
700
(1 row)
702
701
</programlisting>
703
702
</listitem>
@@ -887,11 +886,11 @@ WHERE id = any (SELECT * FROM some_table limit 4);
887
886
</para>
888
887
<programlisting>
889
888
SELECT * FROM journal WHERE dt >= '2015-06-01' AND dt < '2015-06-03';
890
- id | dt | level | msg
889
+ id | dt | level | msg
891
890
--------+---------------------+-------+----------------------------------
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
895
894
...
896
895
(2880 rows)
897
896