Entity-ify a few new uses of literal <, >, and &.
authorTom Lane
Sat, 27 Feb 2010 04:29:44 +0000 (04:29 +0000)
committerTom Lane
Sat, 27 Feb 2010 04:29:44 +0000 (04:29 +0000)
doc/src/sgml/ecpg.sgml
doc/src/sgml/hstore.sgml
doc/src/sgml/ref/create_table.sgml

index 075e02ad9d8868c5e384cd1ad0a598b0657d368f..43f49dd658f0b319f9b5ad46f2ca0615e977a069 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
 
  <application>ECPG</application> - Embedded <acronym>SQL</acronym> in C
@@ -3204,9 +3204,9 @@ EXEC SQL INCLUDE sqlda.h;
 
     EXEC SQL DESCRIBE mystmt INTO sqlda;
 
-    printf("# of fields: %d\n", sqlda->sqld);
-    for (i = 0; i < sqlda->sqld; i++)
-      printf("field %d: \"%s\"\n", sqlda->sqlvar[i]->sqlname);
+    printf("# of fields: %d\n", sqlda->sqld);
+    for (i = 0; i < sqlda->sqld; i++)
+      printf("field %d: \"%s\"\n", sqlda->sqlvar[i]->sqlname);
 
     EXEC SQL DECLARE mycursor CURSOR FOR mystmt;
     EXEC SQL OPEN mycursor;
@@ -3220,7 +3220,7 @@ EXEC SQL INCLUDE sqlda.h;
     EXEC SQL CLOSE mycursor;
 
     free(sqlda); /* The main structure is all to be free(),
-                  * sqlda and sqlda->sqlvar is in one allocated area */
+                  * sqlda and sqlda->sqlvar is in one allocated area */
 
     For more information, see the sqlda.h header and the
     src/interfaces/ecpg/test/compat_informix/sqlda.pgc regression test.
index 958a6b9d160ab1ce8436dfa495866280c13a6957..f9110616f7a5e3669d2fb028c9dc2d22fb35b4ae 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
 
  hstore
@@ -401,7 +401,7 @@ b
 
   
    hstore has GiST and GIN index support for the @>,
-   ?, ?& and ?| operators. For example:
+   ?, ?&amp; and ?| operators. For example:
   
   
 CREATE INDEX hidx ON testhstore USING GIST (h);
index a68ce56f46c36e01ca5bac967a09ebd2d3324fa1..c5b0223c6b8340de0ab796aba6489a8a0f1c71cf 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -471,7 +471,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE 
       For example, you can specify a constraint that
       no two rows in the table contain overlapping circles
       (see ) by using the
-      && operator.
+      &amp;& operator.
      
 
      
@@ -1183,7 +1183,7 @@ WITH (fillfactor=70);
 
 CREATE TABLE circles (
     c circle,
-    EXCLUDE USING gist (c WITH &&)
+    EXCLUDE USING gist (c WITH &amp;&)
 );