<variablelist>
<varlistentry>
<term><computeroutput>
-NOTICE: QUERY PLAN:
+INFO: QUERY PLAN:
<replaceable>plan</replaceable>
</computeroutput></term>
<listitem>
<programlisting>
EXPLAIN SELECT * FROM foo;
<computeroutput>
-NOTICE: QUERY PLAN:
+INFO: QUERY PLAN:
Seq Scan on foo (cost=0.00..2.28 rows=128 width=4)
<programlisting>
EXPLAIN SELECT * FROM foo WHERE i = 4;
<computeroutput>
-NOTICE: QUERY PLAN:
+INFO: QUERY PLAN:
Index Scan using fi on foo (cost=0.00..0.42 rows=1 width=4)
<programlisting>
EXPLAIN SELECT sum(i) FROM foo WHERE i = 4;
<computeroutput>
-NOTICE: QUERY PLAN:
+INFO: QUERY PLAN:
Aggregate (cost=0.42..0.42 rows=1 width=4)
-> Index Scan using fi on foo (cost=0.00..0.42 rows=1 width=4)
</varlistentry>
<varlistentry>
- <term><computeroutput>NOTICE: Time zone is unknown</computeroutput></term>
+ <term><computeroutput>WARNING: Time zone is unknown</computeroutput></term>
<listitem>
<para>
If the <envar>TZ</envar> or <envar>PGTZ</envar> environment
<screen>
SHOW DateStyle;
-NOTICE: DateStyle is ISO with US (NonEuropean) conventions
+INFO: DateStyle is ISO with US (NonEuropean) conventions
</screen>
</para>
Show the current genetic optimizer (<literal>geqo</literal>) setting:
<screen>
SHOW GEQO;
-NOTICE: geqo is on
+INFO: geqo is on
</screen>
</para>
</refsect1>
<varlistentry>
<term><computeroutput>
-NOTICE: --Relation <replaceable class="PARAMETER">table</replaceable>--
+INFO: --Relation <replaceable class="PARAMETER">table</replaceable>--
</computeroutput></term>
<listitem>
<para>
<varlistentry>
<term><computeroutput>
-NOTICE: Pages 98: Changed 25, Reapped 74, Empty 0, New 0;
+INFO: Pages 98: Changed 25, Reapped 74, Empty 0, New 0;
Tup 1000: Vac 3000, Crash 0, UnUsed 0, MinLen 188, MaxLen 188;
Re-using: Free/Avail. Space 586952/586952; EndEmpty/Avail. Pages 0/74.
Elapsed 0/0 sec.
<varlistentry>
<term><computeroutput>
-NOTICE: Index <replaceable class="PARAMETER">index</replaceable>: Pages 28;
+INFO: Index <replaceable class="PARAMETER">index</replaceable>: Pages 28;
Tuples 1000: Deleted 3000. Elapsed 0/0 sec.
</computeroutput></term>
<listitem>
<programlisting>
regression=> VACUUM VERBOSE ANALYZE onek;
-NOTICE: --Relation onek--
-NOTICE: Index onek_unique1: Pages 14; Tuples 1000: Deleted 3000.
+INFO: --Relation onek--
+INFO: Index onek_unique1: Pages 14; Tuples 1000: Deleted 3000.
CPU 0.00s/0.11u sec elapsed 0.12 sec.
-NOTICE: Index onek_unique2: Pages 16; Tuples 1000: Deleted 3000.
+INFO: Index onek_unique2: Pages 16; Tuples 1000: Deleted 3000.
CPU 0.00s/0.10u sec elapsed 0.10 sec.
-NOTICE: Index onek_hundred: Pages 13; Tuples 1000: Deleted 3000.
+INFO: Index onek_hundred: Pages 13; Tuples 1000: Deleted 3000.
CPU 0.00s/0.10u sec elapsed 0.10 sec.
-NOTICE: Index onek_stringu1: Pages 31; Tuples 1000: Deleted 3000.
+INFO: Index onek_stringu1: Pages 31; Tuples 1000: Deleted 3000.
CPU 0.01s/0.09u sec elapsed 0.10 sec.
-NOTICE: Removed 3000 tuples in 70 pages.
+INFO: Removed 3000 tuples in 70 pages.
CPU 0.02s/0.04u sec elapsed 0.07 sec.
-NOTICE: Pages 94: Changed 0, Empty 0; Tup 1000: Vac 3000, Keep 0, UnUsed 0.
+INFO: Pages 94: Changed 0, Empty 0; Tup 1000: Vac 3000, Keep 0, UnUsed 0.
Total CPU 0.05s/0.45u sec elapsed 0.59 sec.
-NOTICE: Analyzing onek
+INFO: Analyzing onek
VACUUM
</programlisting>
</para>