Add ID attribute to some sect2's missing it
authorAlvaro Herrera
Mon, 2 May 2011 22:13:49 +0000 (19:13 -0300)
committerAlvaro Herrera
Mon, 2 May 2011 22:13:49 +0000 (19:13 -0300)
David Fetter

doc/src/sgml/func.sgml

index 633f21583e309f136a8209cb933ccc0f2a2fdb05..657835c701bc11a56e02cd0be6a008ff6c034d54 100644 (file)
@@ -8717,7 +8717,7 @@ CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple
    with configure --with-libxml.
   
 
-  
+   id="functions-producing-xml">
    Producing XML Content
 
    
@@ -9093,7 +9093,7 @@ SELECT xmlagg(x) FROM (SELECT * FROM test ORDER BY y DESC) AS tab;
    
    
 
-   
+    id="functions-xml-predicates">
     XML Predicates
 
     
@@ -9854,7 +9854,7 @@ SELECT setval('foo', 42, false);    Next nextval wi
    
   
 
-  
+   id="functions-case">
    <literal>CASE</>
 
   
@@ -9966,7 +9966,7 @@ SELECT ... WHERE CASE WHEN x <> 0 THEN y/x > 1.5 ELSE false END;
    
   
 
-  
+   id="functions-coalesce-nvl-ifnull">
    <literal>COALESCE</>
 
   
@@ -10005,7 +10005,7 @@ SELECT COALESCE(description, short_description, '(none)') ...
    
   
 
-  
+   id="functions-nullif">
    <literal>NULLIF</>
 
   
@@ -10034,7 +10034,7 @@ SELECT NULLIF(value, '(none)') ...
 
   
 
-  
+   id="functions-greatest-least">
    <literal>GREATEST</literal> and <literal>LEAST</literal>
 
   
@@ -11492,7 +11492,7 @@ SELECT xmlagg(x) FROM (SELECT x FROM test ORDER BY y DESC) AS tab;
    Boolean (true/false) results.
   
 
-  
+   id="functions-subquery-exists">
    <literal>EXISTS</literal>
 
 
@@ -11542,7 +11542,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
   
   
 
-  
+   id="functions-subquery-in">
    <literal>IN</literal>
 
 
@@ -11598,7 +11598,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
   
   
 
-  
+   id="functions-subquery-notin">
    <literal>NOT IN</literal>
 
 
@@ -11654,7 +11654,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
   
   
 
-  
+   id="functions-subquery-any-some">
    <literal>ANY</literal>/<literal>SOME</literal>
 
 
@@ -11719,7 +11719,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
   
   
 
-  
+   id="functions-subquery-all">
    <literal>ALL</literal>