Update reference pages for new INFO, NOTICE, WARNING elog() levels.
authorBruce Momjian <[email protected]>
Wed, 6 Mar 2002 06:48:05 +0000 (06:48 +0000)
committerBruce Momjian <[email protected]>
Wed, 6 Mar 2002 06:48:05 +0000 (06:48 +0000)
14 files changed:
doc/src/sgml/ref/abort.sgml
doc/src/sgml/ref/begin.sgml
doc/src/sgml/ref/close.sgml
doc/src/sgml/ref/commit.sgml
doc/src/sgml/ref/create_view.sgml
doc/src/sgml/ref/declare.sgml
doc/src/sgml/ref/drop_function.sgml
doc/src/sgml/ref/end.sgml
doc/src/sgml/ref/explain.sgml
doc/src/sgml/ref/fetch.sgml
doc/src/sgml/ref/listen.sgml
doc/src/sgml/ref/rollback.sgml
doc/src/sgml/ref/show.sgml
doc/src/sgml/ref/vacuum.sgml

index d550ed1827412cf03e3674e27b5ddd1a0f18bcff..537fa0acc12d32b400e2206b778b482cdd8ba64c 100644 (file)
@@ -62,7 +62,7 @@ ROLLBACK
      </varlistentry>
      <varlistentry>
       <term><computeroutput>
-NOTICE:  ROLLBACK: no transaction in progress
+WARNING:  ROLLBACK: no transaction in progress
        </computeroutput></term>
       <listitem>
        <para>
index 2a19c1f71a3693e71fc2d5390c67eff6857d55ac..acde5c0474f38a25ddb9ae933eb54f984aafeceb 100644 (file)
@@ -72,7 +72,7 @@ BEGIN
      </varlistentry>
      <varlistentry>
       <term><computeroutput>
-NOTICE:  BEGIN: already a transaction in progress
+WARNING:  BEGIN: already a transaction in progress
        </computeroutput></term>
       <listitem>
        <para>
index 5641dccbabdd7648151e02e6b6bb73698114753a..710e14ac174389ac2b330d1a69117572375cc061 100644 (file)
@@ -70,7 +70,7 @@ CLOSE
      </varlistentry>
      <varlistentry>
       <term><computeroutput>
-NOTICE PerformPortalClose: portal "<replaceable class="PARAMETER">cursor</replaceable>" not found
+WARNING:  PerformPortalClose: portal "<replaceable class="PARAMETER">cursor</replaceable>" not found
        </computeroutput></term>
       <listitem>
        <para>
index bdbb7d7ea215b8fbf78ebf3d4dc16b0053cd2899..706a437b5c95ab14d009ed1dae742427a9d0b6d1 100644 (file)
@@ -72,7 +72,7 @@ COMMIT
      </varlistentry>
      <varlistentry>
       <term><computeroutput>
-NOTICE:  COMMIT: no transaction in progress
+WARNING:  COMMIT: no transaction in progress
        </computeroutput></term>
       <listitem>
        <para>
index 6f48d82fe25286031657183ee06ce5924afaab63..8f3b06b6e2f84385f3fc78e6f932d6f508356f0f 100644 (file)
@@ -102,7 +102,7 @@ ERROR:  Relation '<replaceable class="parameter">view</replaceable>' already exi
      </varlistentry>
      <varlistentry>
       <term><computeroutput>
-NOTICE:  Attribute '<replaceable class="parameter">column</replaceable>' has an unknown type
+WARNING:  Attribute '<replaceable class="parameter">column</replaceable>' has an unknown type
        </computeroutput></term>
       <listitem>
        <para>
index c016b093a4d7b5208e7db2c5f925a984ec7518c9..1e1cc527e14640b229aba5d3d0f10fd99d062be9 100644 (file)
@@ -153,7 +153,7 @@ SELECT
 
      <varlistentry>
       <term><computeroutput>
-NOTICE:  Closing pre-existing portal "<replaceable class="parameter">cursorname</replaceable>"
+WARNING:  Closing pre-existing portal "<replaceable class="parameter">cursorname</replaceable>"
        </computeroutput></term>
       <listitem>
        <para>
index 7effd60f70260dc6dd267f5a840800d1638e00c1..8bafc78deb754b3cd0c64b9edac30a3e86aca862 100644 (file)
@@ -77,7 +77,7 @@ DROP
      </varlistentry>
      <varlistentry>
       <term><computeroutput>
-NOTICE RemoveFunction: Function "<replaceable class="parameter">name</replaceable>" ("<replaceable class="parameter">types</replaceable>") does not exist
+WARNING:  RemoveFunction: Function "<replaceable class="parameter">name</replaceable>" ("<replaceable class="parameter">types</replaceable>") does not exist
        </computeroutput></term>
       <listitem>
        <para>
index eab892b30d8f91be37270a9e93263e590c9d49cc..7a8cfeedd28d1a91ef4191db0922400cf9a9c3f0 100644 (file)
@@ -72,7 +72,7 @@ COMMIT
      </varlistentry>
      <varlistentry>
       <term><computeroutput>
-NOTICE:  COMMIT: no transaction in progress
+WARNING:  COMMIT: no transaction in progress
        </computeroutput></term>
       <listitem>
        <para>
index 3a6dbbe9b565870518308157cc83834b786e3819..870a7cc80c83718edfdb9a8ddaa0a4bdcda39186 100644 (file)
@@ -77,7 +77,7 @@ EXPLAIN [ ANALYZE ] [ VERBOSE ] <replaceable class="PARAMETER">query</replaceabl
     <variablelist>
      <varlistentry>
       <term><computeroutput>
-NOTICE:  QUERY PLAN:
+INFO:  QUERY PLAN:
 <replaceable>plan</replaceable>
       </computeroutput></term>
       <listitem>
@@ -193,7 +193,7 @@ ROLLBACK;
    <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)
 
@@ -210,7 +210,7 @@ EXPLAIN
    <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)
 
@@ -228,7 +228,7 @@ EXPLAIN
    <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)
index 9c2215efacb16bac6fc1e3cf26b44e97331c864c..a9f12f744058cff1db7ad11ade23de6878e33008 100644 (file)
@@ -159,7 +159,7 @@ FETCH [ FORWARD | BACKWARD | RELATIVE ] [ <replaceable class="PARAMETER">#</repl
     <variablelist>
      <varlistentry>
       <term><computeroutput>
-NOTICE:  PerformPortalFetch: portal "<replaceable class="PARAMETER">cursor</replaceable>" not found
+WARNING:  PerformPortalFetch: portal "<replaceable class="PARAMETER">cursor</replaceable>" not found
        </computeroutput></term>
       <listitem>
        <para>
@@ -172,7 +172,7 @@ NOTICE:  PerformPortalFetch: portal "<replaceable class="PARAMETER">cursor</repl
 
      <varlistentry>
       <term><computeroutput>
-NOTICE:  FETCH/ABSOLUTE not supported, using RELATIVE
+WARNING:  FETCH/ABSOLUTE not supported, using RELATIVE
        </computeroutput></term>
       <listitem>
        <para>
index 0a34d65eeb7437832dfe429af7c3c83517694191..c2d8136507630ecc38aae96b0d48b41ebbbe541e 100644 (file)
@@ -70,7 +70,7 @@ LISTEN
      </varlistentry>
      <varlistentry>
       <term><computeroutput>
-NOTICE Async_Listen: We are already listening on <replaceable class="PARAMETER">name</replaceable>
+WARNING:  Async_Listen: We are already listening on <replaceable class="PARAMETER">name</replaceable>
        </computeroutput></term>
       <listitem>
        <para>
index 548303842bc2df57430aee6d054d78d2def0ac1b..5dca7745e32b026f54670e5e37e805e297239c34 100644 (file)
@@ -61,7 +61,7 @@ ABORT
      
      <varlistentry>
       <term><computeroutput>
-NOTICE:  ROLLBACK: no transaction in progress
+WARNING:  ROLLBACK: no transaction in progress
        </computeroutput></term>
       <listitem>
        <para>
index 18dd668621caf5ac88593bd377c51b151b7425a3..a1317097cdaf4bed49c83a98ebd5dea689fc8645 100644 (file)
@@ -83,7 +83,7 @@ SHOW ALL
      </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
@@ -102,7 +102,7 @@ SHOW ALL
 
 <screen>
 SHOW DateStyle;
-NOTICE:  DateStyle is ISO with US (NonEuropean) conventions
+INFO:  DateStyle is ISO with US (NonEuropean) conventions
 </screen>
   </para>
 
@@ -110,7 +110,7 @@ NOTICE:  DateStyle is ISO with US (NonEuropean) conventions
    Show the current genetic optimizer (<literal>geqo</literal>) setting:
 <screen>
 SHOW GEQO;
-NOTICE:  geqo is on
+INFO:  geqo is on
 </screen>
   </para>
  </refsect1>
index 78d39e27421dc6d3fffe8bc286ef8972b9615f27..110b45e94fae554e49de35e0ea2e84268adc86d7 100644 (file)
@@ -115,7 +115,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] ANALYZE [ <replaceable class="PARAMETER">
 
      <varlistentry>
       <term><computeroutput>
-NOTICE:  --Relation <replaceable class="PARAMETER">table</replaceable>--
+INFO:  --Relation <replaceable class="PARAMETER">table</replaceable>--
        </computeroutput></term>
       <listitem>
        <para>
@@ -126,7 +126,7 @@ NOTICE:  --Relation <replaceable class="PARAMETER">table</replaceable>--
 
      <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.
@@ -140,7 +140,7 @@ NOTICE:  Pages 98: Changed 25, Reapped 74, Empty 0, New 0;
 
      <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>
@@ -251,20 +251,20 @@ NOTICE:  Index <replaceable class="PARAMETER">index</replaceable>: Pages 28;
 
    <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>