diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-09-13 17:33:46 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-09-13 17:33:46 +0000 |
commit | f51759064c78bcc7468ccc1b4d87f68f98bd43a9 (patch) | |
tree | f998268f3e21e68fc49d4f7d09b98d2b8c41ae2f | |
parent | bcd8986e7dd1808d1bf8a4ce554da19b415574b2 (diff) | |
download | postgresql-f51759064c78bcc7468ccc1b4d87f68f98bd43a9.tar.gz postgresql-f51759064c78bcc7468ccc1b4d87f68f98bd43a9.zip |
Minor wording improvements.
-rw-r--r-- | contrib/README | 2 | ||||
-rw-r--r-- | contrib/array/README.array_iterator | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/contrib/README b/contrib/README index 42d4079154e..a8a2c6c968b 100644 --- a/contrib/README +++ b/contrib/README @@ -29,7 +29,7 @@ adddepend - by Rod Taylor <rbt@rbt.ca> array - - Array iterator functions + Array iterator functions (now obsolete due to backend improvements) by Massimo Dal Zotto <dz@cs.unitn.it> btree_gist - diff --git a/contrib/array/README.array_iterator b/contrib/array/README.array_iterator index f824ab54ea8..127a6f4ba94 100644 --- a/contrib/array/README.array_iterator +++ b/contrib/array/README.array_iterator @@ -27,6 +27,5 @@ Now do this instead: -- select tuples with all txt elements matching '^[A-Z]' select * from t where '^[A-Z]' ~ all (t.txt[1:3]); -See the related section in the online documentation for more detail: - Table of Contents => Functions and Operators => Row and Array Comparisons - +See this section in the PostgreSQL documentation for more detail: + The SQL Language => Functions and Operators => Row and Array Comparisons |