Update reference pages for new INFO, NOTICE, WARNING elog() levels.
authorBruce Momjian
Wed, 6 Mar 2002 06:48:05 +0000 (06:48 +0000)
committerBruce Momjian
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 1172653942a8a611cf3ed9afdf08129836a0a09f..83da642a8fe8d89d4388d7278c99d202f89cf5a3 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -62,7 +62,7 @@ ROLLBACK
      
      
       
-NOTICE:  ROLLBACK: no transaction in progress
+WARNING:  ROLLBACK: no transaction in progress
        
       
        
index 15c1dbdf070068e754bf5236f97137751ca1e33e..61ddd1417ff7d1cd0a4e30844d01079a333f0744 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -72,7 +72,7 @@ BEGIN
      
      
       
-NOTICE:  BEGIN: already a transaction in progress
+WARNING:  BEGIN: already a transaction in progress
        
       
        
index 41746ed49aee8c38e19cf6f49d1b67dd3c93219b..4f05079c67d479fa0965d995f34887bac491dd7b 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -70,7 +70,7 @@ CLOSE
      
      
       
-NOTICE PerformPortalClose: portal "cursor" not found
+WARNING:  PerformPortalClose: portal "cursor" not found
        
       
        
index e8a956f6938d5dea2820ad66325ff5a0fc0acd6e..8d983652a695b888a2f5d3c72e0816e77c19c6f3 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -72,7 +72,7 @@ COMMIT
      
      
       
-NOTICE:  COMMIT: no transaction in progress
+WARNING:  COMMIT: no transaction in progress
        
       
        
index c0d60f3e92c24db72da5150d82f413be9780bfc5..942dd9008975dc620e081640429b6202ab13b92d 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -102,7 +102,7 @@ ERROR:  Relation 'view' already exi
      
      
       
-NOTICE:  Attribute 'column' has an unknown type
+WARNING:  Attribute 'column' has an unknown type
        
       
        
index 692656af9c4a196cf2b74e4e39d0e1fd3452a698..67fa3cc8cfe47f7f380553a2afa342f682338408 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -153,7 +153,7 @@ SELECT
 
      
       
-NOTICE:  Closing pre-existing portal "cursorname"
+WARNING:  Closing pre-existing portal "cursorname"
        
       
        
index 34de6e730551968865c6dce00969ab533d4b5e48..642dc63d480fa63ae1cc164088f3cd0ca0387e90 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -77,7 +77,7 @@ DROP
      
      
       
-NOTICE RemoveFunction: Function "name" ("types") does not exist
+WARNING:  RemoveFunction: Function "name" ("types") does not exist
        
       
        
index 119ce8235f594b50870d3dccc13871bbbeea194c..27a6e52b88de42934103f11129dcc744cb4b322b 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -72,7 +72,7 @@ COMMIT
      
      
       
-NOTICE:  COMMIT: no transaction in progress
+WARNING:  COMMIT: no transaction in progress
        
       
        
index 5a4e2771ec8a9fe3e8f17db5c701c38115fdd512..d9ed871b2890c4f10058be2839e9323dfcf4bdc2 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -77,7 +77,7 @@ EXPLAIN [ ANALYZE ] [ VERBOSE ] query
     
      
       
-NOTICE:  QUERY PLAN:
+INFO:  QUERY PLAN:
 plan
       
       
@@ -193,7 +193,7 @@ ROLLBACK;
    
 EXPLAIN SELECT * FROM foo;
     
-NOTICE:  QUERY PLAN:
+INFO:  QUERY PLAN:
 
 Seq Scan on foo  (cost=0.00..2.28 rows=128 width=4)
 
@@ -210,7 +210,7 @@ EXPLAIN
    
 EXPLAIN SELECT * FROM foo WHERE i = 4;
     
-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
    
 EXPLAIN SELECT sum(i) FROM foo WHERE i = 4;
     
-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 60e11ab50f5d8896c6658b95dc9dc2bec1c7f0b9..c21b22cc2eb0e42bcb3400b5b8bc53f9d2d5d648 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -159,7 +159,7 @@ FETCH [ FORWARD | BACKWARD | RELATIVE ] [ #
     
      
       
-NOTICE:  PerformPortalFetch: portal "cursor" not found
+WARNING:  PerformPortalFetch: portal "cursor" not found
        
       
        
@@ -172,7 +172,7 @@ NOTICE:  PerformPortalFetch: portal "cursor
 
      
       
-NOTICE:  FETCH/ABSOLUTE not supported, using RELATIVE
+WARNING:  FETCH/ABSOLUTE not supported, using RELATIVE
        
       
        
index dfa6ecbaf986d40b93d78c0e659607b11b06d647..dfb0c54d097e5d0527720f56740596b2376cf5aa 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -70,7 +70,7 @@ LISTEN
      
      
       
-NOTICE Async_Listen: We are already listening on name
+WARNING:  Async_Listen: We are already listening on name
        
       
        
index 2ba6eecc9c621f28a341508a962aa74cb59c50e6..8e87dc30f3b4e5772bbbd057d448308fb7b97677 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -61,7 +61,7 @@ ABORT
      
      
       
-NOTICE:  ROLLBACK: no transaction in progress
+WARNING:  ROLLBACK: no transaction in progress
        
       
        
index a5e0d7735a9e40150b150c2b2e110ee9533ca39d..37e7e856525c57f88af04aaa0c60e2faf640a30e 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -83,7 +83,7 @@ SHOW ALL
      
 
      
-      NOTICE:  Time zone is unknown
+      WARNING:  Time zone is unknown
       
        
    If the TZ or PGTZ environment
@@ -102,7 +102,7 @@ SHOW ALL
 
 
 SHOW DateStyle;
-NOTICE:  DateStyle is ISO with US (NonEuropean) conventions
+INFO:  DateStyle is ISO with US (NonEuropean) conventions
 
   
 
@@ -110,7 +110,7 @@ NOTICE:  DateStyle is ISO with US (NonEuropean) conventions
    Show the current genetic optimizer (geqo) setting:
 
 SHOW GEQO;
-NOTICE:  geqo is on
+INFO:  geqo is on
 
   
  
index d1038735897f35720b1b64e81ac7e29f13acfec8..5b2f6c5f1bddd4f307b6a23137d8ed1016d2fedf 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -115,7 +115,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] ANALYZE [ 
 
      
       
-NOTICE:  --Relation table--
+INFO:  --Relation table--
        
       
        
@@ -126,7 +126,7 @@ NOTICE:  --Relation table--
 
      
       
-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;
 
      
       
-NOTICE:  Index index: Pages 28;
+INFO:  Index index: Pages 28;
          Tuples 1000: Deleted 3000. Elapsed 0/0 sec.
        
       
@@ -251,20 +251,20 @@ NOTICE:  Index index: Pages 28;
 
    
 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