From 389fad1e6bfcf6c6bf3f3f397aea637af029bb4a Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 16 Oct 2006 17:28:03 +0000 Subject: [PATCH] Remove use of '<' and '>' in SGML, use '&' escapes. Update find_gt_lt to allow grep parameters to be passed into it. --- doc/src/sgml/ddl.sgml | 4 ++-- doc/src/sgml/plpython.sgml | 4 ++-- doc/src/sgml/ref/create_opclass.sgml | 6 +++--- src/tools/find_gt_lt | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index a71705a37c..f974438988 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -1,4 +1,4 @@ - + Data Definition @@ -2342,7 +2342,7 @@ VALUES ('New York', NULL, NULL, 'NY'); CHECK ( x = 1 ) CHECK ( county IN ( 'Oxfordshire', 'Buckinghamshire', 'Warwickshire' )) -CHECK ( outletID >= 100 AND outletID < 200 ) +CHECK ( outletID >= 100 AND outletID < 200 ) Ensure that the constraints guarantee that there is no overlap between the key values permitted in different partitions. A common diff --git a/doc/src/sgml/plpython.sgml b/doc/src/sgml/plpython.sgml index 135ef85d5b..4a118ebd67 100644 --- a/doc/src/sgml/plpython.sgml +++ b/doc/src/sgml/plpython.sgml @@ -1,4 +1,4 @@ - + PL/Python - Python Procedural Language @@ -123,7 +123,7 @@ CREATE FUNCTION pymax (a integer, b integer) AS $$ if (a is None) or (b is None): return None - if a > b: + if a > b: return a return b $$ LANGUAGE plpythonu; diff --git a/doc/src/sgml/ref/create_opclass.sgml b/doc/src/sgml/ref/create_opclass.sgml index c9fc8d89b1..524be85f97 100644 --- a/doc/src/sgml/ref/create_opclass.sgml +++ b/doc/src/sgml/ref/create_opclass.sgml @@ -1,5 +1,5 @@ @@ -238,8 +238,8 @@ CREATE OPERATOR CLASS gist__int_ops DEFAULT FOR TYPE _int4 USING gist AS OPERATOR 3 &&, OPERATOR 6 = RECHECK, - OPERATOR 7 @>, - OPERATOR 8 <@, + OPERATOR 7 @>, + OPERATOR 8 <@, OPERATOR 20 @@ (_int4, query_int), FUNCTION 1 g_int_consistent (internal, _int4, int4), FUNCTION 2 g_int_union (bytea, internal), diff --git a/src/tools/find_gt_lt b/src/tools/find_gt_lt index 3dca3a6bfd..72bcad47ea 100755 --- a/src/tools/find_gt_lt +++ b/src/tools/find_gt_lt @@ -1,6 +1,6 @@ #!/bin/sh -# $PostgreSQL: pgsql/src/tools/find_gt_lt,v 1.2 2006/03/11 04:38:41 momjian Exp $ +# $PostgreSQL: pgsql/src/tools/find_gt_lt,v 1.3 2006/10/16 17:28:03 momjian Exp $ -grep '[^]a-z0-9"/!-]>' *.sgml ref/*.sgml -grep '<[^]a-z0-9"/!-]' *.sgml ref/*.sgml +grep "$@" '[^]a-z0-9"/!-]>' *.sgml ref/*.sgml +grep "$@" '<[^]a-z0-9"/!-]' *.sgml ref/*.sgml -- 2.40.0