From 4ec700a8ec2104b887747c26622b819f83557127 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 27 Feb 2010 04:29:44 +0000 Subject: [PATCH] Entity-ify a few new uses of literal <, >, and &. --- doc/src/sgml/ecpg.sgml | 10 +++++----- doc/src/sgml/hstore.sgml | 4 ++-- doc/src/sgml/ref/create_table.sgml | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/doc/src/sgml/ecpg.sgml b/doc/src/sgml/ecpg.sgml index 075e02ad9d..43f49dd658 100644 --- a/doc/src/sgml/ecpg.sgml +++ b/doc/src/sgml/ecpg.sgml @@ -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. diff --git a/doc/src/sgml/hstore.sgml b/doc/src/sgml/hstore.sgml index 958a6b9d16..f9110616f7 100644 --- a/doc/src/sgml/hstore.sgml +++ b/doc/src/sgml/hstore.sgml @@ -1,4 +1,4 @@ - + hstore @@ -401,7 +401,7 @@ b hstore has GiST and GIN index support for the @>, - ?, ?& and ?| operators. For example: + ?, ?& and ?| operators. For example: CREATE INDEX hidx ON testhstore USING GIST (h); diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index a68ce56f46..c5b0223c6b 100644 --- a/doc/src/sgml/ref/create_table.sgml +++ b/doc/src/sgml/ref/create_table.sgml @@ -1,5 +1,5 @@ @@ -471,7 +471,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE ) by using the - && operator. + && operator. @@ -1183,7 +1183,7 @@ WITH (fillfactor=70); CREATE TABLE circles ( c circle, - EXCLUDE USING gist (c WITH &&) + EXCLUDE USING gist (c WITH &&) );